Update style.js #73
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Create releases | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Compress Chromium build | |
run: | | |
zip -r chromium.zip _locales icons popup/dist src manifest.json updates.json | |
- name: Compress Firefox build | |
run: | | |
mv manifest.json manifest-chromium.json | |
mv manifest-firefox.json manifest.json | |
zip -r firefox.zip _locales icons popup/dist src manifest.json updates.json | |
mv manifest.json manifest-firefox.json | |
mv manifest-chromium.json manifest.json | |
- name: Upload as artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Releases | |
path: | | |
chromium.zip | |
firefox.zip |