This GitHub Action helps easily manipulate tags, used explicitly for pre-release tags that should move and follow the progress.
This example demonstrates using this action to "update" and "move" the v0.0.1-dev.NNN
tags.
- name: 🏷 dev tags
uses: endaft/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
prefix: v0.0.1-dev.
tag: ${{ format('v0.0.1-dev.{0}', github.run_number) }}
name | required | description | default |
---|---|---|---|
token | true |
The GitHub Token to use for reference management in the repo. | |
prefix | true |
The prefix to match against existing tags for deletion. | |
tag | true |
The value of the new tag to be created. |
None