File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed
Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 3939 - name : Install frontend dependencies
4040 run : bun install
4141
42+ - name : Install linuxdeploy
43+ if : matrix.os == 'ubuntu-22.04'
44+ run : |
45+ wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage
46+ chmod +x linuxdeploy-x86_64.AppImage
47+ sudo mv linuxdeploy-x86_64.AppImage /usr/local/bin/linuxdeploy
48+
4249 - name : Build
4350 run : bunx tauri build
4451 env :
5562 src-tauri/target/release/bundle/msi/*.msi
5663 src-tauri/target/release/bundle/nsis/*.exe
5764 src-tauri/target/release/bundle/dmg/*.dmg
65+
66+ - name : Release
67+ uses : softprops/action-gh-release@v2
68+ with :
69+ files : |
70+ src-tauri/target/release/bundle/deb/*.deb
71+ src-tauri/target/release/bundle/rpm/*.rpm
72+ src-tauri/target/release/bundle/appimage/*.AppImage
73+ src-tauri/target/release/bundle/msi/*.msi
74+ src-tauri/target/release/bundle/nsis/*.exe
75+ src-tauri/target/release/bundle/dmg/*.dmg
You can’t perform that action at this time.
0 commit comments