Skip to content

Commit

Permalink
fixes ${{ env.VERSION }}
Browse files Browse the repository at this point in the history
  • Loading branch information
ringabout authored Sep 18, 2024
1 parent d419fb3 commit be7a66d
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
overwrite: true
tag: ${{ env.VERSION }}
asset_name: choosenim-$tag_linux_amd64
tag: ${{ github.ref }}
asset_name: choosenim-${{ env.VERSION }}_linux_amd64
file: ${{ runner.workspace }}/choosenim/choosenim/bin/choosenim

build-win32-exe:
Expand All @@ -77,8 +77,8 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
overwrite: true
tag: ${{ env.VERSION }}
asset_name: choosenim-$tag_windows_amd64.exe
tag: ${{ github.ref }}
asset_name: choosenim-${{ env.VERSION }}_windows_amd64.exe
file: ${{ runner.workspace }}/choosenim/bin/choosenim.exe

# ----------------------------------------------------------------------------
Expand Down Expand Up @@ -113,8 +113,8 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
overwrite: true
tag: ${{ env.VERSION }}
asset_name: choosenim-$tag_windows_amd64.zip
tag: ${{ github.ref }}
asset_name: choosenim-${{ env.VERSION }}_windows_amd64.zip
file: ${{ runner.workspace }}/choosenim/choosenim-windows.zip

# ----------------------------------------------------------------------------
Expand Down Expand Up @@ -144,8 +144,8 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
overwrite: true
tag: ${{ env.VERSION }}
asset_name: choosenim-$tag_macosx_amd64
tag: ${{ github.ref }}
asset_name: choosenim-${{ env.VERSION }}_macosx_amd64
file: ${{ runner.workspace }}/choosenim/bin/choosenim

build-macos_arm64:
Expand Down Expand Up @@ -173,6 +173,6 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
overwrite: true
tag: ${{ env.VERSION }}
asset_name: choosenim-$tag_macosx_arm64
tag: ${{ github.ref }}
asset_name: choosenim-${{ env.VERSION }}_macosx_arm64
file: ${{ runner.workspace }}/choosenim/bin/choosenim

0 comments on commit be7a66d

Please sign in to comment.