Skip to content

Commit 4d7ec07

Browse files
committed
chore: more more work in progress on release-ui automation
Signed-off-by: Nick Mitchell <[email protected]>
1 parent b3fdf12 commit 4d7ec07

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/release-ui.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ jobs:
2222
args: '--target aarch64-unknown-linux-musl'
2323
- platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04.
2424
args: '--target x86_64-unknown-linux-musl'
25-
- platform: 'windows-latest'
26-
args: ''
25+
#- platform: 'windows-latest'
26+
# args: ''
2727

2828
runs-on: ${{ matrix.platform }}
2929
defaults:
@@ -48,12 +48,17 @@ jobs:
4848
run: |
4949
sudo apt-get update
5050
sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
51+
rustup target add aarch64-unknown-linux-musl
52+
rustup target add x86_64-unknown-linux-musl
5153
# webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2.
5254
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.
5355

5456
- name: install frontend dependencies
5557
run: npm ci # change this to npm, pnpm or bun depending on which one you use.
5658

59+
- name: prep interpreter
60+
run: npm run prep-interpreter
61+
5762
- name: download tauri-action
5863
run: |
5964
mkdir tauri-action && cd tauri-action

0 commit comments

Comments
 (0)