Skip to content

Commit

Permalink
I hate windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ringabout authored Sep 18, 2024
1 parent f1b717d commit fdc4ed8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,14 +70,14 @@ jobs:
run: |
$VERSION = $Env:GITHUB_REF_NAME.Trim("v")
echo $VERSION
echo "VERSION=$VERSION" >> $GITHUB_ENV
"VERSION=$VERSION" >> $env:GITHUB_ENV
- name: Upload binaries to release/tag
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
overwrite: true
tag: ${{ VERSION }}
tag: ${{ env.VERSION }}
asset_name: choosenim-$tag_windows_amd64.exe
file: ${{ runner.workspace }}/choosenim/bin/choosenim.exe

Expand Down Expand Up @@ -106,14 +106,14 @@ jobs:
run: |
$VERSION = $Env:GITHUB_REF_NAME.Trim("v")
echo $VERSION
echo "VERSION=$VERSION" >> $GITHUB_ENV
"VERSION=$VERSION" >> $env:GITHUB_ENV
- name: Upload binaries to release/tag
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
overwrite: true
tag: ${{ VERSION }}
tag: ${{ env.VERSION }}
asset_name: choosenim-$tag_windows_amd64.zip
file: ${{ runner.workspace }}/choosenim/choosenim-windows.zip

Expand Down

0 comments on commit fdc4ed8

Please sign in to comment.