Skip to content

Commit

Permalink
Package as zip and upload artifacts using github action
Browse files Browse the repository at this point in the history
  • Loading branch information
kungfoo committed Oct 1, 2024
1 parent 9d4ce22 commit 46374f9
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,3 +46,17 @@ jobs:
Copy-Item ".\target\i686-pc-windows-msvc\release\falcon_bms_callbacker.exe" -Destination ".\target\package\win32\"
tree target\package /F
Compress-Archive -Path ".\target\package\win64\*" -DestinationPath ".\target\package\falcon_bms_callbacker-win64.zip"
Compress-Archive -Path ".\target\package\win32\*" -DestinationPath ".\target\package\falcon_bms_callbacker-win32.zip"
- name: Upload win64 binary
uses: actions/upload-artifact@v4
with:
name: falcon_bms_callbacker-win64.zip
path: ./target/package/falcon_bms_callbacker-win64.zip
- name: Upload win32 binary
uses: actions/upload-artifact@v4
with:
name: falcon_bms_callbacker-win32.zip
path: ./target/package/falcon_bms_callbacker-win32.zip

0 comments on commit 46374f9

Please sign in to comment.