From c713c713b7271f7af159b8bdecf8a64d7aff042e Mon Sep 17 00:00:00 2001 From: lana-k Date: Wed, 20 Jul 2022 23:15:14 +0200 Subject: [PATCH] fix paths #97 --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bb5cb07..77b0a62 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,8 +27,8 @@ jobs: - name: Create archives run: | cd dist - zip -9 -r dist.zip . -x "js/*.map" -x "/*.map" - zip -9 -r dist_map.zip . + zip -9 -r ../dist.zip . -x "js/*.map" -x "/*.map" + zip -9 -r ../dist_map.zip . - name: Create Release Notes run: | @@ -40,6 +40,6 @@ jobs: - name: Create release uses: ncipollo/release-action@v1 with: - artifacts: "dist/dist.zip,dist/dist_map.zip" + artifacts: "dist.zip,dist_map.zip" token: ${{ secrets.GITHUB_TOKEN }} bodyFile: "CHANGELOG.md"