Skip to content

Commit

Permalink
Release v0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
magnalite committed Jun 5, 2023
1 parent 043e105 commit 4be1373
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
mkdir staging
cp "target/release/wally.exe" staging/
cd staging
zip ../release.zip *
7z ../release.zip *
- name: Upload Archive to Release
uses: actions/upload-release-asset@v1
Expand All @@ -51,13 +51,13 @@ jobs:
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
asset_path: release.zip
asset_name: wally-${{ github.ref }}-win64.zip
asset_name: wally-${{github.ref_name}}-win64.zip
asset_content_type: application/octet-stream

- name: Upload artifacts
uses: actions/upload-artifact@v1
with:
name: wally-${{ github.ref }}-win64.zip
name: wally-${{ github.ref_name }}-win64.zip
path: release.zip

macos:
Expand Down Expand Up @@ -96,13 +96,13 @@ jobs:
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
asset_path: release.zip
asset_name: wally-${{ github.ref }}-macos.zip
asset_name: wally-${{ github.ref_name }}-macos.zip
asset_content_type: application/octet-stream

- name: Upload artifacts
uses: actions/upload-artifact@v1
with:
name: wally-${{ github.ref }}-macos.zip
name: wally-${{ github.ref_name }}-macos.zip
path: release.zip

linux:
Expand Down Expand Up @@ -136,11 +136,11 @@ jobs:
with:
upload_url: ${{ needs.create-release.outputs.upload_url }}
asset_path: release.zip
asset_name: wally-${{ github.ref }}-linux.zip
asset_name: wally-${{ github.ref_name }}-linux.zip
asset_content_type: application/octet-stream

- name: Upload artifacts
uses: actions/upload-artifact@v1
with:
name: wally-${{ github.ref }}-linux.zip
name: wally-${{ github.ref_name }}-linux.zip
path: release.zip

0 comments on commit 4be1373

Please sign in to comment.