Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/lib-build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
was_added=1
elif [[ "${target}" == "macos-x86" ]]; then
[ -n "$was_added" ] && echo -n "," >> /tmp/matrix.json
echo -n '{"os":"macos-13", "target": "macos-x86"}' >> /tmp/matrix.json
echo -n '{"os":"macos-15-intel", "target": "macos-x86"}' >> /tmp/matrix.json
was_added=1
elif [[ "${target}" == "macos-arm" ]]; then
[ -n "$was_added" ] && echo -n "," >> /tmp/matrix.json
Expand Down Expand Up @@ -134,9 +134,9 @@ jobs:
if: runner.os == 'MacOS'
run: |
##### Set MACOSX_DEPLOYMENT_TARGET
if [ "${{ matrix.os }}" == "macos-13" ]; then
echo "MACOSX_DEPLOYMENT_TARGET=13.0" >> $GITHUB_ENV;
echo "Enforcing target deployment for 13.0"
if [ "${{ matrix.os }}" == "macos-15-intel" ]; then
echo "MACOSX_DEPLOYMENT_TARGET=15.0" >> $GITHUB_ENV;
echo "Enforcing target deployment for 15.0"
elif [ "${{ matrix.os }}" == "macos-14" ]; then
echo "MACOSX_DEPLOYMENT_TARGET=14.0" >> $GITHUB_ENV;
echo "Enforcing target deployment for 14.0"
Expand Down
Loading