pup-filter/.gitlab-ci.yml

47 lines
988 B
YAML
Raw Normal View History

image: alpine:latest
2021-03-31 10:53:42 +00:00
include:
- template: Security/Secret-Detection.gitlab-ci.yml
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
netlify:
stage: deploy
before_script:
- apk update && apk add curl
script:
- curl -X POST -d '{}' https://api.netlify.com/build_hooks/$NETLIFY_BUILD_HOOK
rules:
# Only trigger through schedule job and "Run pipeline" in the main branch
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && ($CI_PIPELINE_SOURCE == "schedule" || $CI_PIPELINE_SOURCE == "web")'