Updated changelog, readme and CI

Build Firefox and Chrome ZIP to support `applications` field again
This commit is contained in:
Kevin R
2022-01-20 22:37:41 +01:00
parent 8c21938620
commit 47819fc6d7
3 changed files with 17 additions and 4 deletions

View File

@@ -24,15 +24,26 @@ hash rules:
- data.minify.json
- rules.minify.hash
bundle addon:
bundle addon firefox:
stage: build
script:
- zip ClearURLs -r -FS clearurls.js browser-polyfill.js manifest.json img/* external_js/* html/* core_js/* css/* fonts/* _locales/*
- zip ClearURLs-firefox -r -FS clearurls.js browser-polyfill.js manifest.json img/* external_js/* html/* core_js/* css/* fonts/* _locales/*
only:
- master
artifacts:
paths:
- ClearURLs.zip
- ClearURLs-firefox.zip
bundle addon chrome:
stage: build
script:
- jq 'del(.applications)' manifest.json > manifest.json.tmp && mv manifest.json.tmp manifest.json
- zip ClearURLs-chrome -r -FS clearurls.js browser-polyfill.js manifest.json img/* external_js/* html/* core_js/* css/* fonts/* _locales/*
only:
- master
artifacts:
paths:
- ClearURLs-chrome.zip
pages:
stage: deploy