Skip to content

Commit

Permalink
Add linux
Browse files Browse the repository at this point in the history
  • Loading branch information
Hacksore committed Nov 5, 2023
1 parent f503b4f commit e330898
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: install frontend dependencies
run: pnpm install
- name: build tauri app
run: pnpm tauri build --ci -v --target universal-apple-darwin
run: pnpm tauri build --ci -v --target universal-apple-darwin
- uses: actions/upload-artifact@v2
with:
name: "overlayed-unstable-mac"
Expand All @@ -46,3 +46,28 @@ jobs:
with:
name: "overlayed-unstable-windows"
path: "**/*.exe"
build-linux:
runs-on: "windows-latest"
steps:
- uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: install dependencies (ubuntu only)
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- uses: pnpm/action-setup@v2
with:
version: 8
- name: install frontend dependencies
run: pnpm install
- name: build tauri app
run: pnpm tauri build --ci -v --target x86_64-unknown-linux-gnu --bundles
- uses: actions/upload-artifact@v2
with:
name: "overlayed-unstable-windows"
path: "**/*.{deb,appimage}"

0 comments on commit e330898

Please sign in to comment.