diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ec94cc1..6d2e860 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,15 +1,19 @@ -image: alpine:latest # Use the latest version of Alpine Linux docker image +image: alpine:latest pages: before_script: - apk update && apk add git brotli - git clone --depth 5 https://gitlab.com/curben/urlhaus-filter.git urlhaus-filter/ + - git clone --depth 5 https://gitlab.com/curben/phishing-filter.git phishing-filter/ + - git clone --depth 5 https://gitlab.com/curben/pup-filter.git pup-filter/ script: - mkdir -p public/ - cp urlhaus-filter/urlhaus-filter* public/ - - find public -type f -regex '.*\.\(txt\|conf\|tpl\)$' -exec gzip -f -k -9 {} \; - - find public -type f -regex '.*\.\(txt\|conf\|tpl\)$' -exec brotli -f -k -9 {} \; + - cp phishing-filter/dist/phishing-filter* public/ + - cp pup-filter/dist/pup-filter* public/ + - 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 {} \; artifacts: paths: diff --git a/README.md b/README.md index 901f0f6..faad9ab 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,3 @@ # Malicious URL Blocklist -Blocklists mirror of https://gitlab.com/curben/urlhaus-filter +Blocklists mirror of [urlhaus-filter](https://gitlab.com/curben/urlhaus-filter), [phishing-filter](https://gitlab.com/curben/phishing-filter) and [pup-filter](https://gitlab.com/curben/pup-filter). \ No newline at end of file