File tree 1 file changed +19
-1
lines changed
1 file changed +19
-1
lines changed Original file line number Diff line number Diff line change 32
32
- name : Build
33
33
run : |
34
34
cmake -B build -DCMAKE_BUILD_TYPE=Release
35
- cmake --build build --parallel --config Release
35
+ 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
+ export 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 AppImage
50
+ uses : actions/upload-artifact@v3
51
+ with :
52
+ name : linux
53
+ path : qhot-*.AppImage
You can’t perform that action at this time.
0 commit comments