Change zip binary in release workflow

This commit is contained in:
Ajay Ramachandran
2020-05-15 20:51:24 -04:00
parent ba13f5951e
commit 1ab1f33caf

View File

@@ -18,6 +18,9 @@ jobs:
- name: Copy configuration - name: Copy configuration
run: cp config.json.example config.json run: cp config.json.example config.json
- name: Install Zip
run: sudo apt-get install zip
# Create Chrome artifacts # Create Chrome artifacts
- name: Create Chrome artifacts - name: Create Chrome artifacts
run: npm run build:chrome run: npm run build:chrome
@@ -28,9 +31,7 @@ jobs:
- run: mkdir ./builds - run: mkdir ./builds
- name: Zip Artifacts - name: Zip Artifacts
run: cd ./dist run: cd ./dist
- uses: montudor/action-zip@v0.1.0 - run: zip -r ../builds/ChromeExtension.zip *
with:
args: zip -r ../builds/ChromeExtension.zip *
- run: cd ../ - run: cd ../
# Create Firefox artifacts # Create Firefox artifacts
@@ -56,9 +57,7 @@ jobs:
path: dist path: dist
- name: Zip Artifacts - name: Zip Artifacts
run: cd ./dist run: cd ./dist
- uses: montudor/action-zip@v0.1.0 - run: zip -r ../builds/ChromeExtensionBeta.zip *
with:
args: zip -r ../builds/ChromeExtensionBeta.zip *
- run: cd ../ - run: cd ../
- name: Create Firefox Beta artifacts - name: Create Firefox Beta artifacts
@@ -69,9 +68,7 @@ jobs:
path: dist path: dist
- name: Zip Artifacts - name: Zip Artifacts
run: cd ./dist run: cd ./dist
- uses: montudor/action-zip@v0.1.0 - run: zip -r ../builds/FirefoxExtensionBeta.zip *
with:
args: zip -r ../builds/FirefoxExtensionBeta.zip *
- run: cd ../ - run: cd ../
# Create Firefox Signed Beta version # Create Firefox Signed Beta version