Skip to content

Commit

Permalink
Merge pull request #43 from reviewdog/improve_release_action
Browse files Browse the repository at this point in the history
ci: remove '/refs/tags' prefix from release action
  • Loading branch information
rickstaa authored Aug 31, 2022
2 parents 463217b + 645b9b4 commit 2053945
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 @@ -45,7 +45,7 @@ jobs:
# This token is provided by Actions, you do not need to create your own token
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create "${TAG_NAME}" -t "Release ${TAG_NAME}" --notes "${BODY}"
gh release create "${TAG_NAME}" -t "Release ${TAG_NAME/refs\/tags\//}" --notes "${BODY}"
release-check:
if: github.event.action == 'labeled'
Expand Down

0 comments on commit 2053945

Please sign in to comment.