actions icon indicating copy to clipboard operation
actions copied to clipboard

`automatic_release_tag` is used instead of pushed git tag

Open radiantly opened this issue 4 years ago • 0 comments

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.

radiantly avatar May 31 '21 20:05 radiantly