From 04534ccade35390362dad7bd3f055b4911200ee6 Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 6 Dec 2020 13:34:27 +0100 Subject: [PATCH] Don't zip with dist in path --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 83c90858..41e86089 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,7 +44,10 @@ jobs: - name: Zip files for release if: github.event_name == 'release' - run: zip -r freqUI.zip dist/* + run: | + cd dist/ + zip -r freqUI.zip . + cd ../ - name: Upload release binaries uses: alexellis/upload-assets@0.2.2