Skip to content

Commit 31f1ae5

Browse files
committed
fix: github action
1 parent 44ac448 commit 31f1ae5

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/build.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,18 @@ jobs:
5757
needs: pre-build
5858
permissions:
5959
contents: write
60-
. strategy:
60+
strategy:
6161
fail-fast: false
6262
matrix:
6363
include:
64-
- platform: 'macos-latest' # for Arm based macs (M1 and above).
65-
args: '--target aarch64-apple-darwin'
66-
- platform: 'macos-latest' # for Intel based macs.
67-
args: '--target x86_64-apple-darwin'
68-
- platform: 'ubuntu-22.04' # for Tauri v1 you could replace this with ubuntu-20.04.
69-
args: ''
70-
- platform: 'windows-latest'
71-
args: ''
64+
- platform: "macos-latest" # for Arm based macs (M1 and above).
65+
args: "--target aarch64-apple-darwin"
66+
- platform: "macos-latest" # for Intel based macs.
67+
args: "--target x86_64-apple-darwin"
68+
- platform: "ubuntu-22.04" # for Tauri v1 you could replace this with ubuntu-20.04.
69+
args: ""
70+
- platform: "windows-latest"
71+
args: ""
7272

7373
runs-on: ${{ matrix.os }}
7474
steps:
@@ -95,9 +95,9 @@ jobs:
9595
uses: actions/setup-node@v4
9696
with:
9797
node-version: "23"
98-
cache: 'pnpm'
98+
cache: "pnpm"
9999

100-
- name: Install Rust stable
100+
- name: Install Rust stable
101101
uses: dtolnay/rust-toolchain@stable
102102
with:
103103
# Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.

0 commit comments

Comments
 (0)