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 7c44c3a commit 1c0a17eCopy full SHA for 1c0a17e
.github/actions/environment/action.yml
@@ -11,6 +11,12 @@ runs:
11
echo "DOTNET_CLI_TELEMETRY_OPTOUT=1" >> $GITHUB_ENV
12
echo "DOTNET_NOLOGO=1" >> $GITHUB_ENV
13
14
+ # zstd is needed for cross OS actions/cache but missing from windows-11-arm
15
+ - name: Install zstd on Windows ARM64
16
+ if: runner.os == 'Windows' && runner.arch == 'ARM64'
17
+ shell: pwsh
18
+ run: choco install zstandard
19
+
20
# See https://github.com/actions/runner-images/blob/main/images/macos/macos-15-Readme.md#xcode
21
- name: Pin the Xcode Version
22
if: runner.os == 'macOS'
0 commit comments