diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 799cfdd..23bf5ed 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,12 +21,14 @@ jobs: npm run build - name: Create archive - run: zip -9 -r dist.zip . -x "js/*.map" + run: | + cd dist + zip -9 -r dist.zip . -x "js/*.map" - name: Create release uses: ncipollo/release-action@v1 with: - artifacts: "dist.zip" + artifacts: "dist/dist.zip" token: ${{ secrets.GITHUB_TOKEN }} - name: Deploy 🚀