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-release, created version v2.0.0 from the next branch for an upcoming release
v2.0.0
next
I would've expected actions-tagger to create as the v2 tag but it didn't. Potential root causes:
v2
pre-release
Here the wokflow:
on: workflow_run: workflows: [Checks] types: [completed] branches: [main, next, beta, alpha] jobs: semantic-release: if: ${{ github.event.workflow_run.conclusion == 'success' }} uses: ./.github/workflows/semantic-release.yml secrets: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} GH_TOKEN: ${{ secrets.GH_TOKEN }} actions-tagger: needs: [semantic-release] runs-on: ubuntu-latest steps: - uses: Actions-R-Us/actions-tagger@latest with: publish_latest_tag: ${{ github.ref_name == 'main' }} token: ${{ secrets.GH_TOKEN }}
The text was updated successfully, but these errors were encountered:
You are probably looking for:
push: tags
Sorry, something went wrong.
No branches or pull requests
semantic-release, created version
v2.0.0
from thenext
branch for an upcoming releaseI would've expected actions-tagger to create as the
v2
tag but it didn't.Potential root causes:
v2.0.0
was released aspre-release
on GithHub and not tagged with latest.v2.0.0
was created from thenext
branch, which is not the default branch (main)Here the wokflow:
The text was updated successfully, but these errors were encountered: