Skip to content
This repository has been archived by the owner on May 19, 2024. It is now read-only.

Commit

Permalink
Minor changes to workflows and toolchain.py
Browse files Browse the repository at this point in the history
  • Loading branch information
xfnty committed Jun 28, 2023
1 parent b6cbf30 commit 4232b53
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ jobs:
run: python toolchain.py -c --target Release

- name: Building
run: python toolchain.py -b --target Release && mv ./build/release/flappy-bird ./flappy-bird
run: python toolchain.py -b --target Release

- name: Zip linux artifact
run: zip -r flappybird-linux ./flappy-bird
run: zip -r flappybird-linux ./build/release

- name: Upload linux artifact
uses: actions/upload-artifact@v1
Expand All @@ -76,10 +76,10 @@ jobs:
run: python toolchain.py -c --target Release

- name: Building
run: python toolchain.py -b --target Release && mv ./build/release/flappy-bird ./flappy-bird
run: python toolchain.py -b --target Release

- name: Zip macos artifact
run: zip -r flappybird-macos ./flappy-bird
run: zip -r flappybird-macos ./build/release

- name: Upload macos artifact
uses: actions/upload-artifact@v1
Expand Down
1 change: 1 addition & 0 deletions toolchain.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ def build(target: BuildTarget):
quit(-1)

print_stage_title('Building')
copy_assets(target)
run_command(
[
CMAKE,
Expand Down

0 comments on commit 4232b53

Please sign in to comment.