Skip to content

Commit

Permalink
Fix crate_universe release action for MacOS (#3190)
Browse files Browse the repository at this point in the history
  • Loading branch information
UebelAndre authored Jan 20, 2025
1 parent f0ef6ed commit c075460
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,11 @@ jobs:
run: |
sudo xcode-select -s /Applications/Xcode_15.2.0.app/Contents/Developer/
# Set SDK environment variables
echo "SDKROOT=$(xcrun -sdk macosx13.0 --show-sdk-path)" >> $GITHUB_ENV
echo "MACOSX_DEPLOYMENT_TARGET=$(xcrun -sdk macosx13.0 --show-sdk-platform-version)" >> $GITHUB_ENV
echo "SDKROOT=$(xcrun -sdk macosx14.2 --show-sdk-path)" >> $GITHUB_ENV
MACOSX_DEPLOYMENT_TARGET="$(xcrun -sdk macosx14.2 --show-sdk-platform-version)"
if [[ -n "${MACOSX_DEPLOYMENT_TARGET}" ]]; then
echo "MACOSX_DEPLOYMENT_TARGET=${MACOSX_DEPLOYMENT_TARGET}" >> $GITHUB_ENV
fi
if: startswith(matrix.os, 'macos')
- name: Setup Windows Bazelrc
run: |
Expand Down

0 comments on commit c075460

Please sign in to comment.