File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change 10
10
# This workflow contains a single job called "build"
11
11
build :
12
12
runs-on : ubuntu-18.04
13
- env :
14
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
15
13
steps :
16
14
- uses : actions/checkout@v3
17
15
with :
28
26
run : |
29
27
wget -nv -c https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage
30
28
chmod +x linuxdeploy-x86_64.AppImage
31
- wget -q https://github.com/TheAssassin/pyuploadtool/releases/download/continuous/pyuploadtool-x86_64.AppImage
32
- chmod +x pyuploadtool-x86_64.AppImage
33
29
- run : |
34
30
meson setup _build -Dprefix=/usr -Dstrip=true --buildtype=release
35
31
cd _build
38
34
../linuxdeploy-x86_64.AppImage --executable AppDir/usr/bin/modemu2k \
39
35
--icon-file=../packaging/modemu2k.png --icon-filename=modemu2k \
40
36
--create-desktop-file --appdir $PWD/AppDir --output appimage
41
- ../pyuploadtool-x86_64.AppImage modemu2k*AppImage
37
+ - name : Deploy AppImage
38
+ uses : ncipollo/release-action@v1
39
+ with :
40
+ allowUpdates : True
41
+ prerelease : False
42
+ artifacts : " modemu2k*AppImage"
43
+ token : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments