From a37edc501b5621d2b27138dda59be0b6be0b3a12 Mon Sep 17 00:00:00 2001 From: lana-k Date: Tue, 10 Nov 2020 21:33:35 +0100 Subject: [PATCH] create an archive --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0e955c3..799cfdd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,10 +20,13 @@ jobs: npm install npm run build + - name: Create archive + run: zip -9 -r dist.zip . -x "js/*.map" + - name: Create release uses: ncipollo/release-action@v1 with: - artifacts: "dist" + artifacts: "dist.zip" token: ${{ secrets.GITHUB_TOKEN }} - name: Deploy 🚀