pup-filter/.gitlab-ci.yml

34 lines
604 B
YAML
Raw Normal View History

image: alpine:latest
2021-03-31 10:53:42 +00:00
build_job:
stage: build
2021-03-31 10:53:42 +00:00
before_script:
- apk update && apk add brotli curl grep xmlstarlet
2021-03-31 10:53:42 +00:00
script:
- sh src/script.sh
- find public -type f -regex '.*\.\(txt\|conf\|tpl\|rules\)$' -exec gzip -f -k -9 {} \;
- find public -type f -regex '.*\.\(txt\|conf\|tpl\|rules\)$' -exec brotli -f -k -9 {} \;
2021-03-31 10:53:42 +00:00
artifacts:
paths:
- tmp
- public
2021-03-31 10:53:42 +00:00
pages:
stage: deploy
2021-03-31 10:53:42 +00:00
script:
- echo
2021-03-31 10:53:42 +00:00
artifacts:
paths:
- public
2021-03-31 10:53:42 +00:00
rules:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
include:
- template: Security/Secret-Detection.gitlab-ci.yml