Skip to content

Commit ec3fefa

Browse files
authoredFeb 17, 2025··
fix relese ci (#95)
1 parent aaf00a4 commit ec3fefa

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎.github/workflows/release.yml

+5
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ jobs:
103103
with:
104104
targets: ${{ matrix.job.target }}
105105
toolchain: ${{ env.RUST_VERSION }}
106+
components: rustfmt, clippy
106107

107108
- uses: Swatinem/rust-cache@v1
108109
with:
@@ -124,6 +125,10 @@ jobs:
124125
echo "SDKROOT=$(xcrun -sdk macosx --show-sdk-path)" >> $GITHUB_ENV
125126
echo "MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx --show-sdk-platform-version)" >> $GITHUB_ENV
126127
128+
# Add this step to explicitly install the target
129+
- name: Install Target
130+
run: rustup target add ${{ matrix.job.target }}
131+
127132
# Build step
128133
- name: Build binaries
129134
run: |

0 commit comments

Comments
 (0)
Please sign in to comment.