Skip to content

Commit 811018c

Browse files
committed
chore: disable linux-arm, enable windows in release-ui automation
Signed-off-by: Nick Mitchell <[email protected]>
1 parent ab3de3f commit 811018c

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/release-ui.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ jobs:
1818
include:
1919
- platform: 'macos-latest' # for Arm based macs (M1 and above).
2020
args: '--target universal-apple-darwin'
21-
- platform: 'ubuntu-22.04-arm' # for Tauri v1 you could replace this with ubuntu-20.04.
22-
args: '--target aarch64-unknown-linux-gnu'
21+
#- platform: 'ubuntu-22.04-arm' # for Tauri v1 you could replace this with ubuntu-20.04.
22+
# args: '--target aarch64-unknown-linux-gnu' # <-- The system library `gdk-3.0` required by crate `gdk-sys` was not found.
2323
- platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04.
2424
args: '--target x86_64-unknown-linux-gnu'
25-
#- platform: 'windows-latest'
26-
# args: ''
25+
- platform: 'windows-latest'
26+
args: ''
2727

2828
runs-on: ${{ matrix.platform }}
2929
defaults:
@@ -70,6 +70,10 @@ jobs:
7070
- name: prep interpreter
7171
run: npm run prep-interpreter
7272

73+
- name: Install wget for Windows
74+
if: matrix.os == 'windows-latest'
75+
run: choco install wget --no-progress
76+
7377
- name: download tauri-action
7478
run: |
7579
mkdir tauri-action && cd tauri-action

0 commit comments

Comments
 (0)