We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c657b05 commit 39358b6Copy full SHA for 39358b6
.github/workflows/release.yml
@@ -32,4 +32,21 @@ jobs:
32
- name: Build
33
run: |
34
cmake -B build -DCMAKE_BUILD_TYPE=Release
35
- cmake --build build --parallel --config Release
+ cmake --build build --parallel --config Release
36
+
37
+ - name: Install LinuxDeploy
38
+ uses: miurahr/install-linuxdeploy-action@v1
39
+ with:
40
+ plugins: qt appimage
41
42
+ - name: Create Appimage
43
+ run: |
44
+ # Install lib for linuxdeploy
45
+ sudo apt install --yes libfuse2 libxkbcommon-x11-0
46
+ QML_SOURCES_PATHS=$PWD/qml
47
+ 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
48
49
+ - name: Upload coverage
50
+ uses: actions/upload-artifact@v3
51
52
+ path: qhot-*.AppImage
0 commit comments