feat: add AppImage packaging #1
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: | | |
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 | |
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 |