diff options
author | Ajay Ramachandran <[email protected]> | 2020-04-27 16:32:26 -0400 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2020-04-27 16:32:26 -0400 |
commit | e3698dcdcafe1c2934540d85486175a334ff9ade (patch) | |
tree | cf1796f08e0705e0dc27c5d269b40a3c9be29b3d /.github | |
parent | fc3abc2b563432d1dbc0be5384a0238a21386cc8 (diff) | |
download | SponsorBlock-e3698dcdcafe1c2934540d85486175a334ff9ade.tar.gz SponsorBlock-e3698dcdcafe1c2934540d85486175a334ff9ade.zip |
Fix release CI not zipping things properly
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 43c6985c..1043661f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: - run: mkdir ./builds - uses: montudor/[email protected] with: - args: zip -qq -r ./builds/ChromeExtension.zip ./dist + args: zip -qq -r ./builds/ChromeExtension.zip ./dist/* # Create Firefox artifacts - name: Create Firefox artifacts @@ -39,7 +39,7 @@ jobs: path: dist - uses: montudor/[email protected] with: - args: zip -qq -r ./builds/FirefoxExtension.zip ./dist + args: zip -qq -r ./builds/FirefoxExtension.zip ./dist/* # Create Beta artifacts (Builds with the name changed to beta) - name: Create Chrome Beta artifacts @@ -50,7 +50,7 @@ jobs: path: dist - uses: montudor/[email protected] with: - args: zip -qq -r ./builds/ChromeExtensionBeta.zip ./dist + args: zip -qq -r ./builds/ChromeExtensionBeta.zip ./dist/* - name: Create Firefox Beta artifacts run: npm run build:firefox -- --env.stream=beta @@ -60,7 +60,7 @@ jobs: path: dist - uses: montudor/[email protected] with: - args: zip -qq -r ./builds/FirefoxExtensionBeta.zip ./dist + args: zip -qq -r ./builds/FirefoxExtensionBeta.zip ./dist/* # Create Firefox Signed Beta version - name: Create Firefox Signed Beta artifacts |