From 1ab1f33cafaf5169682f1053cff07447e1ddca6a Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Fri, 15 May 2020 20:51:24 -0400 Subject: Change zip binary in release workflow --- .github/workflows/release.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 35882cbc..e902a81d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,6 +17,9 @@ jobs: - run: npm install - name: Copy configuration run: cp config.json.example config.json + + - name: Install Zip + run: sudo apt-get install zip # Create Chrome artifacts - name: Create Chrome artifacts @@ -28,9 +31,7 @@ jobs: - run: mkdir ./builds - name: Zip Artifacts run: cd ./dist - - uses: montudor/action-zip@v0.1.0 - with: - args: zip -r ../builds/ChromeExtension.zip * + - run: zip -r ../builds/ChromeExtension.zip * - run: cd ../ # Create Firefox artifacts @@ -56,9 +57,7 @@ jobs: path: dist - name: Zip Artifacts run: cd ./dist - - uses: montudor/action-zip@v0.1.0 - with: - args: zip -r ../builds/ChromeExtensionBeta.zip * + - run: zip -r ../builds/ChromeExtensionBeta.zip * - run: cd ../ - name: Create Firefox Beta artifacts @@ -69,9 +68,7 @@ jobs: path: dist - name: Zip Artifacts run: cd ./dist - - uses: montudor/action-zip@v0.1.0 - with: - args: zip -r ../builds/FirefoxExtensionBeta.zip * + - run: zip -r ../builds/FirefoxExtensionBeta.zip * - run: cd ../ # Create Firefox Signed Beta version -- cgit v1.2.3