From 16f8738d727b2506ff5431469d1d2c74af0a7b78 Mon Sep 17 00:00:00 2001 From: Wyatt Pearsall Date: Wed, 13 Sep 2023 15:24:45 -0400 Subject: [PATCH] Github already zips output artifacts. This removes the needless double zip --- .github/workflows/frontend.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml index 6c9a4e4844a..a6ddf08c321 100644 --- a/.github/workflows/frontend.yml +++ b/.github/workflows/frontend.yml @@ -32,16 +32,11 @@ jobs: - name: Build Javascript run: yarn build - - name: Zip static files - uses: montudor/action-zip@v1 - with: - args: zip -q -r frontend.zip ./cfgov/static_built - - name: Upload artifact uses: actions/upload-artifact@v3 with: name: frontend_${{ github.sha }} - path: frontend.zip + path: ./cfgov/static_built/ coverage: runs-on: ubuntu-latest