From bbfd0c44aef3f4a6ea2f6143bf9d2a30cf081e2c Mon Sep 17 00:00:00 2001 From: James Knight Date: Sun, 18 Feb 2024 15:21:09 -0500 Subject: [PATCH] .github: use ps archive command Since the `zip` utility is not available in the used build container, updating to use the available `Compress-Archive` cmdlet. Signed-off-by: James Knight --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d504b24..8eb73be 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: - name: Create archive run: | cd output/staging - zip -r capsblock-portable.zip . + Compress-Archive -Path * -Destination capsblock-portable.zip - name: Generate hashes run: |