Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,12 @@ jobs:
args: '--target x86_64-apple-darwin'
- platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04.
args: ''
- platform: 'ubuntu-22.04'
args: '--target aarch64-unknown-linux-gnu'
- platform: 'windows-latest'
args: ''
- platform: 'windows-latest'
args: '--target aarch64-pc-windows-msvc'

runs-on: ${{ matrix.settings.platform }}

Expand All @@ -34,6 +38,10 @@ jobs:
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf libsoup2.4-dev javascriptcoregtk-4.0 webkit2gtk-4.0

- name: Install cross
if: matrix.settings.platform == 'ubuntu-22.04' && contains(matrix.settings.args, 'aarch64')
run: cargo install cross --git https://github.com/cross-rs/cross --branch main

- name: Rust setup
uses: dtolnay/rust-toolchain@stable

Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
"bundle": {
"active": true,
"targets": "all",
"targets": ["deb", "appimage", "msi", "rpm"],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
Expand Down