Skip to content

Commit

Permalink
Use github.ref_name in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrubeck committed Dec 27, 2023
1 parent 2022e85 commit 6b5e91b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
files: 'agate.*.gz'
repo-token: ${{ secrets.GITHUB_TOKEN }}
release-tag: ${{ github.ref }}
release-tag: ${{ github.ref_name }}

build_windows:
runs-on: windows-latest
Expand All @@ -47,7 +47,7 @@ jobs:
with:
files: agate.x86_64-pc-windows-msvc.zip
repo-token: ${{ secrets.GITHUB_TOKEN }}
release-tag: ${{ github.ref }}
release-tag: ${{ github.ref_name }}

build_macos_x86_64:
runs-on: macos-latest
Expand All @@ -73,4 +73,4 @@ jobs:
with:
files: 'agate.*.gz'
repo-token: ${{ secrets.GITHUB_TOKEN }}
release-tag: ${{ github.ref }}
release-tag: ${{ github.ref_name }}

0 comments on commit 6b5e91b

Please sign in to comment.