-
David Byers authoredDavid Byers authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
.gitlab-ci.yml 455 B
---
stages:
- build
- deploy
build:
stage: build
script:
- cd extension
- zip -r ../safelinks-cleaner-thunderbird.xpi *
artifacts:
paths:
- ./safelinks-cleaner-thunderbird.xpi
pages:
stage: deploy
script:
- mkdir .public
- cp -r site .public
- cp safelinks-cleaner-thunderbird.xpi .public
- mv .public public
- ls -lr public
artifacts:
paths:
- public/
only:
- master
when: always