Skip to content

Commit

Permalink
remove references to zipped files
Browse files Browse the repository at this point in the history
  • Loading branch information
zbrachinara committed Jan 27, 2023
1 parent 97e96be commit 382657d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ env.binary }}.zip
asset_name: ${{ env.binary }}-linux-${{ steps.get_version.outputs.tag }}.zip
file: ${{ env.binary }}
asset_name: ${{ env.binary }}-linux
tag: ${{ github.ref }}
overwrite: true

Expand Down Expand Up @@ -75,8 +75,8 @@ jobs:
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ env.binary }}.zip
asset_name: ${{ env.binary }}-windows-${{ steps.get_version.outputs.tag }}.zip
file: ${{ env.binary }}
asset_name: ${{ env.binary }}-windows.exe
tag: ${{ github.ref }}
overwrite: true

Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ${{ env.binary }}.dmg
asset_name: ${{ env.binary }}-macos-${{ steps.get_version.outputs.tag }}.dmg
file: ${{ env.binary }}
asset_name: ${{ env.binary }}-macos
tag: ${{ github.ref }}
overwrite: true

0 comments on commit 382657d

Please sign in to comment.