File tree 1 file changed +16
-2
lines changed
1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -10,11 +10,11 @@ jobs:
10
10
arch : x86_64
11
11
- runner : ubuntu-22.04-arm
12
12
arch : arm64
13
- runs-on : ubuntu-20.04
13
+ runs-on : ${{ matrix.runner }}
14
14
steps :
15
15
- uses : actions/checkout@v4
16
16
- name : install deps
17
- run : sudo apt-get update && sudo apt-get install -y zlib1g-dev liblzo2-dev liblzma-dev libbz2-dev scons libfuse3-dev libzstd-dev curl
17
+ run : sudo apt-get update && sudo apt-get install -y zlib1g-dev liblzo2-dev liblzma-dev libbz2-dev scons libfuse3-dev libzstd-dev curl libfuse2
18
18
- name : build lzopfs
19
19
run : scons
20
20
- name : fetch linuxdeploy
25
25
with :
26
26
name : lzopfs-${{ matrix.arch }}.AppImage
27
27
path : lzopfs-${{ matrix.arch }}.AppImage
28
+ release :
29
+ needs : appimage-create
30
+ runs-on : ubuntu-latest
31
+ steps :
32
+ - uses : actions/download-artifact@v4
33
+ with :
34
+ pattern : lzopfs-*.AppImage
35
+ merge-multiple : true
36
+ - uses : softprops/action-gh-release@v2
37
+ with :
38
+ name : Continuous
39
+ tag_name : continuous
40
+ prerelease : true
41
+ files : lzopfs-*.AppImage
You can’t perform that action at this time.
0 commit comments