Skip to content

Commit

Permalink
Fix releases tag name
Browse files Browse the repository at this point in the history
  • Loading branch information
aardappel committed Aug 9, 2023
1 parent 3abfe75 commit e45a5a6
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 @@ -25,7 +25,7 @@ jobs:
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
name: Release ${{ github.event.release.tag_name }}
name: Release ${{ github.ref_name }}
files: |
lobster_windows_release.zip
build-linux:
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
name: Release ${{ github.event.release.tag_name }}
name: Release ${{ github.ref_name }}
files: |
lobster_linux_release.zip
build-mac:
Expand All @@ -83,6 +83,6 @@ jobs:
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
name: Release ${{ github.event.release.tag_name }}
name: Release ${{ github.ref_name }}
files: |
lobster_osx_release.zip

0 comments on commit e45a5a6

Please sign in to comment.