Skip to content

Finalize Actions

Finalize Actions #169

Workflow file for this run

name: Compile on Linux
on:
push:
branches: [ feature/actions ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
cache: 'true'
version: '6.*.*'
- name: Install LinuxDeploy
uses: miurahr/install-linuxdeploy-action@v1
with:
plugins: appimage
- name: Install Additional Software
run: |
sudo apt install appstream fuse libxcb-cursor0
- name: Configure
run: |
cmake -E make_directory build
$Qt6_DIR/bin/qt-cmake -DCMAKE_INSTALL_PREFIX:STRING=$PWD/app/usr -DCMAKE_BUILD_TYPE:STRING=Debug -S . -B build
- name: Compile and Install
run: |
cmake --build build
cmake --build build --target install
- name: Package
run: |
linuxdeploy-x86_64.AppImage --appdir app --output appimage
- uses: pyTooling/Actions/releaser@r0
with:
tag: developerBuilds
rm: true
token: ${{ secrets.GITHUB_TOKEN }}
files: |
*mage