linux build & bundle #10
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: linux build & bundle | |
on: | |
workflow_dispatch: | |
jobs: | |
build-bundle: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v4 | |
with: | |
version: '6.7.*' | |
- name: Install Dependencies | |
run: | | |
sudo apt install libboost-all-dev python3-pip libfuse2 libxcb-cursor0 | |
pip3 install --user meson ninja | |
- name: Build & Bundle | |
run: ./deploy/linux-bundle-appimage.sh | |
- name: Upload binary artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: linux-artifact | |
path: deploy/ZeGrapher*AppImage |