raven-actions/Publish and Tag
🚀🔖 A GitHub Action for properly publishing and tagging GitHub Actions.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| tag_name | The tag to update. If the workflow event is `release`, it will use the `tag_name` from the event payload. | no | — |
| rewrite_tags | Should rewrite major and minor tags? | no | false |
| latest | Make release the latest release. | no | false |
| cleanup_manifest | Should cleanup action manifest? | no | true |
| git_commit_message | Custom git commit message. | no | — |
| git_author_name | Custom git author name. | no | — |
| git_author_email | Custom git author email. | no | — |
| git_committer_name | Custom git committer name. | no | — |
| git_committer_email | Custom git committer email. | no | — |
| github_token | The GitHub token used to authenticate with the GitHub API. | no | ${{ github.token }} |
Outputs
| name | description |
|---|---|
| commit_sha | The SHA of the commit that was tagged. |
| semver | Version of the new release. |
| semver_major | The major version number of the tag. |
| semver_minor | The minor version number of the tag. |
| semver_patch | The patch version number of the tag. |
| release_id | The ID of the release. |
| release_draft | Whether the release is a draft. |
| release_prerelease | Whether the release is a prerelease. |
| release_latest | Whether the release is the latest release. |
| release_url | The URL of the release. |