diff options
author | F1F7Y <64418963+F1F7Y@users.noreply.github.com> | 2023-06-22 21:56:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-22 21:56:40 +0200 |
commit | 23594f24d3a2b09f5d8f912a773540ff3c1db841 (patch) | |
tree | e39fbce4ad453e0c96699bd1ad895e6933bdf8f8 /.github/workflows/release.yml | |
parent | 89996405ee6341252836d606d5de02fff83ec3ab (diff) | |
download | NorthstarLauncher-23594f24d3a2b09f5d8f912a773540ff3c1db841.tar.gz NorthstarLauncher-23594f24d3a2b09f5d8f912a773540ff3c1db841.zip |
Update release action to match push action (#476)v1.15.0-rc2v1.15.0
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r-- | .github/workflows/release.yml | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e5ba1138..cda60106 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: |