mirror of
https://github.com/R2Northstar/NorthstarLauncher
synced 2026-08-23 20:26:04 -04:00
Update release action to match push action (#476)
This commit is contained in:
parent
89996405ee
commit
23594f24d3
1 changed files with 10 additions and 4 deletions
14
.github/workflows/release.yml
vendored
14
.github/workflows/release.yml
vendored
|
|
@ -33,7 +33,9 @@ jobs:
|
|||
with:
|
||||
name: northstar-launcher
|
||||
path: |
|
||||
game/
|
||||
game/*.exe
|
||||
game/*.dll
|
||||
game/bin/x64_retail/*.dll
|
||||
- name: Upload debug build artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
|
|
@ -57,10 +59,14 @@ jobs:
|
|||
with:
|
||||
name: launcher-debug-files
|
||||
path: launcher-debug-files
|
||||
- name: Create zip to upload
|
||||
- name: Create zip with binaries
|
||||
run: |
|
||||
zip --recurse-paths --quiet --junk-paths northstar-launcher.zip northstar-launcher/
|
||||
zip --recurse-paths --quiet --junk-paths launcher-debug-files.zip launcher-debug-files/
|
||||
cd northstar-launcher
|
||||
zip --recurse-paths --quiet ../northstar-launcher.zip *
|
||||
- name: Create zip with debug symbols
|
||||
run: |
|
||||
cd launcher-debug-files
|
||||
zip --recurse-paths --quiet ../launcher-debug-files.zip *
|
||||
- name: Upload files to release
|
||||
uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue