You've already forked gitea-composer-upload-action
22 lines
799 B
Markdown
22 lines
799 B
Markdown
<p align="center">
|
|
<img width="560" height="260" src="docs/image/github_gitea_actions.jpg" alt="github gitea actions">
|
|
</p>
|
|
|
|
# Add/Update a Composer package in Gitea
|
|
|
|
[](https://github.com/rosven9856/gitea-package-action/blob/master/LICENSE)
|
|
|
|
This action will update the package version in the Gitea system using the API and output debugging information to the log.
|
|
|
|
|
|
## Example usage
|
|
|
|
```yaml
|
|
steps:
|
|
- uses: https://hub.cybercinch.nz/gitea-composer-upload@main
|
|
with:
|
|
base_url: "https://gitea_instance_url"
|
|
access_token: "${{ secrets._G_TOKEN }}"
|
|
username: "${{ secrets._G_USERNAME }}"
|
|
owner: "owner"
|
|
package_version: "${{ env.GITHUB_REF_NAME }}" |