Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make AppImage executable using chmod #550

Merged
merged 3 commits into from
Jan 13, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Build
on: [push]
on: [push, workflow_dispatch]
jobs:
windows_build:
name: Windows build
Expand Down Expand Up @@ -72,12 +72,15 @@ jobs:
run: |
./linuxdeploy-x86_64.AppImage --custom-apprun appimage/AppRun -d appimage/usc-game.desktop -i appimage/usc-game.png -e bin/usc-game --appdir usc-appdir --output appimage
mv usc-game*.AppImage bin/usc-game.AppImage
chmod +x bin/usc-game.AppImage
rm bin/usc-game bin/Tests.*
- name: Pack everything into .tar.gz archive
run: cd bin && tar -czvf ../Game_linux_AppImage.tar.gz *
- name: Upload artifact
uses: actions/upload-artifact@master
with:
name: Game_linux_AppImage
path: bin
path: Game_linux_AppImage.tar.gz
macos_build:
name: macOS build
runs-on: macos-latest
Expand Down