diff options
author | Ajay Ramachandran <[email protected]> | 2020-05-11 21:13:19 -0400 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2020-05-11 21:13:19 -0400 |
commit | 789bd5939bdeeb17946ae11237e7ba8b16ef3e0a (patch) | |
tree | f105f21341754385400917e0798484fbbf6c933e /.github | |
parent | b591fbfc4b2d63c1a189c8f849adf9bc864555a5 (diff) | |
download | SponsorBlock-789bd5939bdeeb17946ae11237e7ba8b16ef3e0a.tar.gz SponsorBlock-789bd5939bdeeb17946ae11237e7ba8b16ef3e0a.zip |
Fixed zipping command in release workflow
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release.yml | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f718dfa3..35882cbc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,9 +26,12 @@ jobs: name: ChromeExtension path: dist - run: mkdir ./builds + - name: Zip Artifacts + run: cd ./dist - uses: montudor/[email protected] with: - args: zip -qq -r ./builds/ChromeExtension.zip ./dist/* + args: zip -r ../builds/ChromeExtension.zip * + - run: cd ../ # Create Firefox artifacts - name: Create Firefox artifacts @@ -37,9 +40,12 @@ jobs: with: name: FirefoxExtension path: dist + - name: Zip Artifacts + run: cd ./dist - uses: montudor/[email protected] with: - args: zip -qq -r ./builds/FirefoxExtension.zip ./dist/* + args: zip -r ../builds/FirefoxExtension.zip * + - run: cd ../ # Create Beta artifacts (Builds with the name changed to beta) - name: Create Chrome Beta artifacts @@ -48,9 +54,12 @@ jobs: with: name: ChromeExtensionBeta path: dist + - name: Zip Artifacts + run: cd ./dist - uses: montudor/[email protected] with: - args: zip -qq -r ./builds/ChromeExtensionBeta.zip ./dist/* + args: zip -r ../builds/ChromeExtensionBeta.zip * + - run: cd ../ - name: Create Firefox Beta artifacts run: npm run build:firefox -- --env.stream=beta @@ -58,9 +67,12 @@ jobs: with: name: FirefoxExtensionBeta path: dist + - name: Zip Artifacts + run: cd ./dist - uses: montudor/[email protected] with: - args: zip -qq -r ./builds/FirefoxExtensionBeta.zip ./dist/* + args: zip -r ../builds/FirefoxExtensionBeta.zip * + - run: cd ../ # Create Firefox Signed Beta version - name: Create Firefox Signed Beta artifacts |