`automatic_release_tag` is used instead of pushed git tag
radiantly opened this issue · 0 comments
radiantly commented
When a git tag is pushed, the action still uses the automatic_release_tag
for the release if set. Relevant config:
uses: marvinpinto/action-automatic-releases@latest
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: ${{ !startsWith(github.ref, 'refs/tags/v') }}
The full workflow file can be found here.
If this is unintended, I'm happy to open a PR fixing this issue.