We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Semantic Versioning requires pre-releases to have the version number followed by a hyphen and a dot separated identifiers. For example, 1.0.0-alpha.1
However, autotag removes characters after 1.0.0 in the above example. This means that Semantic Versioning will not create a pre-release tag.
My workflow: `name: Create Tag
on: push jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: butlerlogic/action-autotag@stable with: strategy: docker root: /mypath tag_suffix: -Alpha env: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"`
In my Dockerfile, I set the VERSION = 1.0.0-Alpha.1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Semantic Versioning requires pre-releases to have the version number followed by a hyphen and a dot separated identifiers. For example, 1.0.0-alpha.1
However, autotag removes characters after 1.0.0 in the above example. This means that Semantic Versioning will not create a pre-release tag.
My workflow:
`name: Create Tag
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: butlerlogic/action-autotag@stable
with:
strategy: docker
root: /mypath
tag_suffix: -Alpha
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"`
In my Dockerfile, I set the VERSION = 1.0.0-Alpha.1
The text was updated successfully, but these errors were encountered: