Skip to content

Commit 1c0a17e

Browse files
authored
install zstd for restoring too
1 parent 7c44c3a commit 1c0a17e

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/actions/environment/action.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,12 @@ runs:
1111
echo "DOTNET_CLI_TELEMETRY_OPTOUT=1" >> $GITHUB_ENV
1212
echo "DOTNET_NOLOGO=1" >> $GITHUB_ENV
1313
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+
1420
# See https://github.com/actions/runner-images/blob/main/images/macos/macos-15-Readme.md#xcode
1521
- name: Pin the Xcode Version
1622
if: runner.os == 'macOS'

0 commit comments

Comments
 (0)