Skip to content

Commit

Permalink
ci: change release.yml to use tag explicitly (#5972)
Browse files Browse the repository at this point in the history
It doesn't seem to pick up the tag from earlier in the job and just says
`refs/head/main` which is not helpful. Hopefully being explicit will fix
this.
  • Loading branch information
quisquous authored Dec 1, 2023
1 parent c7b1897 commit 9c6a93e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
uses: ncipollo/release-action@v1
with:
name: ${{ needs.validate_tag.outputs.version }}
tag: ${{ github.ref }}
tag: v${{ needs.validate_tag.outputs.version }}
artifacts: cactbot-${{ needs.validate_tag.outputs.version }}.zip
artifactContentType: application/zip
draft: true
Expand Down

0 comments on commit 9c6a93e

Please sign in to comment.