Skip to content

Commit c0d5440

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

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release-ui.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
- platform: 'macos-latest' # for Arm based macs (M1 and above).
2020
args: '--target universal-apple-darwin'
2121
- platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04.
22-
args: '--target aarch64-unknown-linux-glibc'
22+
args: '--target aarch64-unknown-linux-gnu'
2323
- platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04.
24-
args: '--target x86_64-unknown-linux-glibc'
24+
args: '--target x86_64-unknown-linux-gnu'
2525
#- platform: 'windows-latest'
2626
# args: ''
2727

@@ -48,8 +48,8 @@ jobs:
4848
# # Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
4949
# targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
5050

51-
- name: install dependencies (ubuntu only)
52-
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
51+
- name: install dependencies (mac only)
52+
if: matrix.platform == 'macos-latest' # This must match the platform value defined above.
5353
run: |
5454
rustup target add aarch64-apple-darwin
5555
rustup target add x86_64-apple-darwin
@@ -59,8 +59,8 @@ jobs:
5959
run: |
6060
sudo apt-get update
6161
sudo apt-get install -y libwebkit2gtk-4.0-dev libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
62-
rustup target add aarch64-unknown-linux-glibc
63-
rustup target add x86_64-unknown-linux-glibc
62+
rustup target add aarch64-unknown-linux-gnu
63+
rustup target add x86_64-unknown-linux-gnu
6464
# webkitgtk 4.0 is for Tauri v1 - webkitgtk 4.1 is for Tauri v2.
6565
# You can remove the one that doesn't apply to your app to speed up the workflow a bit.
6666

0 commit comments

Comments
 (0)