Fix upload problem #171
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: Compile on Linux | |
on: | |
push: | |
branches: [ feature/actions ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
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 | |
ls | |
- name: Upload artifacts | |
uses: pyTooling/Actions/releaser@r0 | |
with: | |
tag: developerBuilds | |
token: ${{ secrets.GITHUB_TOKEN }} | |
files: | | |
*mage |