feat: add AppImage packaging #5
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: AppImage Build | |
on: | |
workflow_dispatch: | |
# Ensure the build works on main | |
push: | |
branches: [main] | |
# Ensure the build works on each pull request | |
pull_request: | |
# Build and publish on release | |
release: | |
types: [published] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: extractions/setup-just@v1 | |
- name: Load dotenv | |
run: just ci-load-dotenv | |
- name: Load dotenv | |
run: just bump-version | |
- name: Build AppImage | |
run: | | |
# Install FUSE (https://github.com/AppImage/AppImageKit/wiki/FUSE) | |
sudo add-apt-repository universe | |
sudo apt install libfuse2 | |
# Install pkg2appimage and build the game (https://github.com/AppImageCommunity/pkg2appimage) | |
wget -c $(wget -q https://api.github.com/repos/AppImageCommunity/pkg2appimage/releases -O - | grep "pkg2appimage-.*-x86_64.AppImage" | grep browser_download_url | head -n 1 | cut -d '"' -f 4) | |
chmod +x ./pkg2appimage-*.AppImage | |
./pkg2appimage-*.AppImage public/packaging/appimage/recipe.yml | |
# Rename the AppImage | |
mv ./out/Marble-*.AppImage Marble.AppImage | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: Marble.AppImage | |
# Publish, on each release | |
- name: Publish AppImage | |
if: ${{ env.GITHUB_EVENT_NAME == 'release' || (env.GITHUB_EVENT_NAME == 'workflow_dispatch' && startsWith(github.ref, 'refs/tags/')) }} | |
run: | | |
gh release upload ${{ env.game_version }} ./Marble.AppImage |