akkuman/gitea-release-action
An action to support publishing release to Gitea.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
- Runtime
- Deprecated runtime
Inputs
| name | description | required | default |
|---|---|---|---|
| server_url | the base url of the gitea API | no | ${{ github.server_url }} |
| body | Note-worthy description of changes in release | no | ${{ github.event.release.body != '' && github.event.release.body || null }} |
| body_path | Path to load description of changes in this release | no | — |
| name | Gives the release a custom name. Defaults to tag name | no | ${{ github.event.release.name != '' && github.event.release.name || github.ref_name }} |
| tag_name | Gives a tag name. Defaults to github.GITHUB_REF | no | ${{ github.ref_name }} |
| draft | Creates a draft release. Defaults to false | no | ${{ github.event.release.draft || false }} |
| prerelease | Identify the release as a prerelease. Defaults to false | no | ${{ github.event.release.prerelease || false }} |
| files | Newline-delimited list of path globs for asset files to upload | no | — |
| repository | Repository to make releases against, in <owner>/<repo> format | no | ${{ github.repository }} |
| token | Gitea Token | no | ${{ github.token }} |
| target_commitish | Commitish value that determines where the Git tag is created from. Can be any branch or commit SHA. | no | — |
| md5sum | Publish `.md5` along with artifacts. | no | — |
| sha256sum | Publish `.sha256` along with artifacts. | no | — |
Outputs
no outputs