Skip to content

Commit 7fad845

Browse files
committed
fix: attempt to resolve macos-rust github actions issue
Signed-off-by: Nick Mitchell <[email protected]>
1 parent beb97ee commit 7fad845

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.github/workflows/release-static-web-app.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ jobs:
2525
with:
2626
node-version: lts/*
2727

28-
- name: install Rust stable
29-
uses: dtolnay/rust-toolchain@stable
30-
with:
31-
# Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
32-
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
28+
# - name: install Rust stable
29+
# uses: dtolnay/rust-toolchain@stable
30+
# with:
31+
# # Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
32+
# targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
3333

3434
- name: install dependencies (ubuntu only)
3535
run: |

.github/workflows/release-ui.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
with:
3636
node-version: lts/*
3737

38-
- name: install Rust stable
39-
uses: dtolnay/rust-toolchain@stable
40-
with:
41-
# Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
42-
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
38+
# - name: install Rust stable
39+
# uses: dtolnay/rust-toolchain@stable
40+
# with:
41+
# # Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
42+
# targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
4343

4444
- name: install dependencies (ubuntu only)
4545
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.

0 commit comments

Comments
 (0)