Skip to content

Commit

Permalink
action: Add appimage deployment
Browse files Browse the repository at this point in the history
Signed-off-by: Patrick José Pereira <[email protected]>
  • Loading branch information
patrickelectric committed Mar 7, 2023
1 parent c657b05 commit 39358b6
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,21 @@ jobs:
- name: Build
run: |
cmake -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build --parallel --config Release
cmake --build build --parallel --config Release
- name: Install LinuxDeploy
uses: miurahr/install-linuxdeploy-action@v1
with:
plugins: qt appimage

- name: Create Appimage
run: |
# Install lib for linuxdeploy
sudo apt install --yes libfuse2 libxkbcommon-x11-0
QML_SOURCES_PATHS=$PWD/qml
linuxdeploy-x86_64.AppImage --desktop-file=deploy/qhot.desktop --executable=build/src/qhot --appdir=build/src --plugin=qt --output=appimage --verbosity=3 --icon-file=deploy/icon.png
- name: Upload coverage
uses: actions/upload-artifact@v3
with:
path: qhot-*.AppImage

0 comments on commit 39358b6

Please sign in to comment.