Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into dev
Browse files Browse the repository at this point in the history
# Conflicts:
#	.github/workflows/release.yml
  • Loading branch information
Nereuxofficial committed Dec 8, 2022
2 parents 4458a09 + 3538b22 commit 173c804
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,19 +41,27 @@ jobs:
if : ${{ runner.os == 'Linux' }}
run: strip target/release/game

- name: Copy binary Linux
if: ${{ runner.os == 'Linux' }}
run: cp target/release/game game

- name: Copy binary Windows
if: ${{ runner.os == 'Windows' }}
run: cp target/release/game.exe game.exe

- name: Zip Release
if : ${{ runner.os == 'Windows' }}
uses: vimtor/action-zip@v1
with:
files: assets target/release/game.exe
recursive: false
files: assets game.exe
dest: game_windows.zip

- name: Zip Release Linux
if : ${{ runner.os == 'Linux' }}
uses: vimtor/action-zip@v1
with:
files: assets target/release/game
files: assets game
recursive: false
dest: game_linux.zip

Expand Down

0 comments on commit 173c804

Please sign in to comment.