Skip to content

Commit

Permalink
fix release workflow tagname
Browse files Browse the repository at this point in the history
  • Loading branch information
joeyhage committed Nov 11, 2021
1 parent 2c940e7 commit aca5c42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ jobs:
await github.rest.repos.createRelease({
owner: context.repo.owner,
repo: context.repo.repo,
tag_name: context.ref.replace('refs/tags/v', ''),
tag_name: context.ref.replace('refs/tags/', ''),
target_commitish: context.sha,
name: context.ref.replace('refs/tags/v', ''),
name: context.ref.replace('refs/tags/', ''),
draft: false,
prerelease: false,
generate_release_notes: true,
Expand Down

0 comments on commit aca5c42

Please sign in to comment.