pup-filter/.gitlab-ci.yml

66 lines
1.3 KiB
YAML
Raw Normal View History

image: alpine:latest
2021-03-31 10:53:42 +00:00
include:
- template: Security/Secret-Detection.gitlab-ci.yml
# Only run pipeline when scheduled or "Run pipeline" in the main branch
workflow:
rules:
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH && ($CI_PIPELINE_SOURCE == "schedule" || $CI_PIPELINE_SOURCE == "web")'
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
cloudflare:
stage: deploy
before_script:
- apk update && apk add curl
script:
- curl -X POST "https://api.cloudflare.com/client/v4/pages/webhooks/deploy_hooks/$CLOUDFLARE_BUILD_HOOK"
rules:
- if: '$CLOUDFLARE == "true"'
netlify:
stage: deploy
before_script:
- npm install
- npm install netlify-cli -g
- netlify --telemetry-disable
script:
- npm run build
- netlify deploy --dir=public --prod
rules:
- if: '$NETLIFY == "true"'