Skip to content

Commit 1cf0479

Browse files
committed
build v0.1.2
1 parent 683214b commit 1cf0479

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ jobs:
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:
@@ -55,3 +62,14 @@ jobs:
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

0 commit comments

Comments
 (0)