Skip to content

Commit c9352c8

Browse files
authored
ci(nuget): set MACOSX_DEPLOYMENT_TARGET to 10.12 (#403)
Fixes the following warning: ``` warning: deployment target in MACOSX_DEPLOYMENT_TARGET was set to 10.10, but the minimum supported by `rustc` is 10.12 ```
1 parent f1a22e9 commit c9352c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/nuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
shell: pwsh
9999
run: |
100100
if ('${{ matrix.os }}' -Eq 'osx') {
101-
echo "MACOSX_DEPLOYMENT_TARGET=10.10" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append
101+
echo "MACOSX_DEPLOYMENT_TARGET=10.12" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append
102102
} elseif ('${{ matrix.os }}' -Eq 'ios') {
103103
echo "IPHONEOS_DEPLOYMENT_TARGET=12.1" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append
104104
}

0 commit comments

Comments
 (0)