clear-urls-browser-extension/.gitlab-ci.yml

31 lines
815 B
YAML
Raw Normal View History

2019-02-12 23:30:36 +00:00
before_script:
- export COMMIT_TIME=$(git show -s --format=%ct $CI_COMMIT_SHA)
stages:
- build
build firefox:
stage: build
script:
- apt-get install -y zip
- zip ClearUrls_firefox_$COMMIT_TIME -r -FS clearurls.js browser-polyfill.js manifest.json img/* external_js/* html/* core_js/* css/* fonts/* _locales/*
only:
- master
artifacts:
paths:
- bin/Firefox/ClearUrls_chrome_$COMMIT_TIME.zip
build chrome:
stage: build
script:
- apt-get install -y zip
- zip ClearUrls_chrome_$COMMIT_TIME -r -FS ChromeVersion/clearurls.js browser-polyfill.js ChromeVersion/manifest.json img/* external_js/* html/* core_js/* css/* fonts/* _locales/* ChromeVersion/css/core.css
only:
- master
artifacts:
paths:
- bin/Chrome/ClearUrls_chrome_$COMMIT_TIME.zip