From 8e9a9d33b37a13f4892588956010ab9677571f26 Mon Sep 17 00:00:00 2001 From: Cameron Maloney Date: Thu, 6 Jun 2024 12:56:34 -0700 Subject: [PATCH] Update main_safehaven2.yml --- .github/workflows/main_safehaven2.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main_safehaven2.yml b/.github/workflows/main_safehaven2.yml index c77b079..ea0fe7e 100644 --- a/.github/workflows/main_safehaven2.yml +++ b/.github/workflows/main_safehaven2.yml @@ -26,8 +26,10 @@ jobs: - name: Create artifact archive run: | - mkdir -p artifact - zip -r artifact/node-app.zip . + $zipfile = "artifact\node-app.zip" + $source = "." + [IO.Compression.ZipFile]::CreateFromDirectory($source, $zipfile) + shell: powershell - name: Upload artifact for deployment job uses: actions/upload-artifact@v3