Skip to content

Commit

Permalink
cc
Browse files Browse the repository at this point in the history
  • Loading branch information
tangbo committed Apr 26, 2024
1 parent 4ce517a commit 033bd18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/call-rust-tauri.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
- name: install stable toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.settings.platform == 'macos-latest' && ((contains(matrix.settings.arg, 'x86_64') && 'x86_64-apple-darwin') || (contains(matrix.settings.arg, 'aarch64') && 'aarch64-apple-darwin')) || '' }}
targets: ${{ matrix.settings.platform == 'macos-latest' && (contains(matrix.settings.arg, 'x86_64') && 'x86_64-apple-darwin') || (contains(matrix.settings.arg, 'aarch64') && 'aarch64-apple-darwin') || '' }}

- name: rust cache
uses: swatinem/rust-cache@v2
Expand Down
2 changes: 1 addition & 1 deletion templates/rust-tauri/extra.j2
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ steps:
- name: install stable toolchain
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.settings.platform == 'macos-latest' && ((contains(matrix.settings.arg, 'x86_64') && 'x86_64-apple-darwin') || (contains(matrix.settings.arg, 'aarch64') && 'aarch64-apple-darwin')) || '' }}
targets: ${{ matrix.settings.platform == 'macos-latest' && (contains(matrix.settings.arg, 'x86_64') && 'x86_64-apple-darwin') || (contains(matrix.settings.arg, 'aarch64') && 'aarch64-apple-darwin') || '' }}

- name: rust cache
uses: swatinem/rust-cache@v2
Expand Down

0 comments on commit 033bd18

Please sign in to comment.