We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2fb44b5 commit 3ae8974Copy full SHA for 3ae8974
.github/workflows/release-dry-run.yml
@@ -119,6 +119,11 @@ jobs:
119
if: contains(matrix.target, '-windows-msvc')
120
- run: echo "RUSTFLAGS=${RUSTFLAGS} -C target-feature=+crt-static -C link-self-contained=yes" >>"${GITHUB_ENV}"
121
if: contains(matrix.target, '-linux-musl')
122
+ # https://doc.rust-lang.org/rustc/platform-support.html
123
+ - run: echo "MACOSX_DEPLOYMENT_TARGET=10.12" >>"${GITHUB_ENV}"
124
+ if: matrix.target == 'x86_64-apple-darwin'
125
+ - run: echo "MACOSX_DEPLOYMENT_TARGET=11.0" >>"${GITHUB_ENV}"
126
+ if: matrix.target == 'aarch64-apple-darwin' || matrix.target == 'universal-apple-darwin'
127
- uses: taiki-e/upload-rust-binary-action@v1
128
with:
129
dry-run: true
0 commit comments