diff options
author | Ajay Ramachandran <[email protected]> | 2020-02-04 01:32:58 -0500 |
---|---|---|
committer | Ajay Ramachandran <[email protected]> | 2020-02-04 01:32:58 -0500 |
commit | 09a33c4252242f5184522af9973940c5a4954431 (patch) | |
tree | 8a2f284b55b871ae02d0f3a59f09eef43f20abfa /.github | |
parent | da364b49f01f4af913319f83d4adeef8a9312132 (diff) | |
download | SponsorBlock-09a33c4252242f5184522af9973940c5a4954431.tar.gz SponsorBlock-09a33c4252242f5184522af9973940c5a4954431.zip |
Added manifest building.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a1ed900..fa1969c1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,17 +18,15 @@ jobs: # Create Chrome artifacts - name: Create Chrome artifacts - run: npm run build + run: npm run build:chrome - uses: actions/upload-artifact@v1 with: name: Chrome Extension path: dist # Create Firefox artifacts - - name: Move manifest - run: mv ./dist/manifest.json ./dist/manifest.json.original - - name: Combine manifest for Firefox - run: jq -s '.[0] * .[1]' ./dist/manifest.json.original ./dist/firefox_manifest-extra.json > manifest.json + - name: Create Firefox artifacts + run: npm run build:firefox - uses: actions/upload-artifact@v1 with: name: Firefox Extension |