Skip to content

Commit

Permalink
fix: release workflow tag format
Browse files Browse the repository at this point in the history
  • Loading branch information
boidolr committed Oct 15, 2023
1 parent 7496b5c commit 5687b83
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:
steps:
- name: Create release for tag
run: gh release create "${{ github.ref }}"
run: |
TAG=$(echo "${{ github.ref }" | cut -c 11-)
gh release create --verify-tag --generate-notes "$TAG"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

0 comments on commit 5687b83

Please sign in to comment.