Skip to content

Commit 3f7c8ae

Browse files
committed
Fix apple x86_64 build
1 parent e364ae3 commit 3f7c8ae

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ jobs:
123123
- name: Fetch dependencies
124124
run: cargo fetch
125125
- name: Build in release mode
126-
run: cargo build --release --frozen --target x86_64-apple-darwin
126+
run: |
127+
rustup target add x86_64-apple-darwin
128+
cargo build --release --frozen --target x86_64-apple-darwin
127129
- name: Add the version tag to the binary name
128130
run: |
129131
VERSION_TAG="$(echo ${{ github.ref_name }} | cut -d/ -f2)"

0 commit comments

Comments
 (0)