You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
329 B
YAML
19 lines
329 B
YAML
# Builds the artifacts (extension.zip) for chrome and firefox
|
|
stages:
|
|
- build
|
|
|
|
firefox:
|
|
stage: build
|
|
script:
|
|
- bash build-ff.sh
|
|
artifacts:
|
|
paths:
|
|
- out/artifacts/firefox/extension.zip
|
|
|
|
chrome:
|
|
stage: build
|
|
script:
|
|
- bash build-cr.sh
|
|
artifacts:
|
|
paths:
|
|
- out/artifacts/chrome/extension.zip |