We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e840292 commit b87f2ebCopy full SHA for b87f2eb
2 files changed
.github/workflows/test.main.kts
@@ -236,6 +236,15 @@ workflowWithCopyright(
236
runsOn = RunnerType.Custom(expr("matrix.environment")),
237
_customArguments = _customArguments
238
) {
239
+ // work-around for https://github.com/actions/cache/issues/1622
240
+ // and https://github.com/actions/partner-runner-images/issues/99
241
+ run(
242
+ name = "Install zstd on windows-11-arm",
243
+ shell = Cmd,
244
+ command = "choco install zstandard",
245
+ condition = "matrix.environment == 'windows-11-arm'"
246
+ )
247
+
248
uses(
249
name = "Restore built artifacts from cache",
250
action = CacheRestore(
0 commit comments