File tree 1 file changed +22
-1
lines changed
1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change 15
15
- os : macos-latest
16
16
DEPLOY_PATH : qhot.dmg
17
17
- os : ubuntu-latest
18
- DEPLOY_PATH : qhot-* .AppImage
18
+ DEPLOY_PATH : qhot.AppImage
19
19
- os : windows-latest
20
20
DEPLOY_PATH : qhot-Windows.zip
21
21
69
69
sudo apt install --yes libfuse2 libxkbcommon-x11-0
70
70
export QML_SOURCES_PATHS=$PWD/qml
71
71
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
72
+ cpp qhot-*.AppImage qhot.AppImage
72
73
73
74
- name : Build Windows
74
75
if : runner.os == 'Windows'
97
98
with :
98
99
name : qhot-${{ runner.os }}
99
100
path : ${{ matrix.DEPLOY_PATH }}
101
+
102
+ - name : Upload continuous to release
103
+ uses : svenstaro/upload-release-action@v2
104
+ if : ${{ github.event_name != 'pull_request' }}
105
+ with :
106
+ repo_token : ${{ secrets.GITHUB_TOKEN }}
107
+ file : ${{ matrix.DEPLOY_PATH }}
108
+ tag : continuous
109
+ overwrite : true
110
+ prerelease : true
111
+
112
+ - name : Upload release
113
+ uses : svenstaro/upload-release-action@v2
114
+ if : startsWith(github.ref, 'refs/tags/')
115
+ with :
116
+ repo_token : ${{ secrets.GITHUB_TOKEN }}
117
+ file : ${{ matrix.DEPLOY_PATH }}
118
+ tag : ${{ github.ref }}
119
+ overwrite : true
120
+ prerelease : true
You can’t perform that action at this time.
0 commit comments