From 86a0a7a9b8bcfce9f1ae118707805def8487443a Mon Sep 17 00:00:00 2001 From: awslawsl233 <89617778+awslawsl233@users.noreply.github.com> Date: Fri, 15 Oct 2021 23:27:55 +0800 Subject: [PATCH 1/2] plaintext link --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index eb19c56..3a472bc 100644 --- a/README.md +++ b/README.md @@ -56,10 +56,12 @@ GFWList URL(Github): https://raw.githubusercontent.com/gfwlist/gfwlist/master/gf 3. Bitbucket: https://bitbucket.org/gfwlist/gfwlist/raw/HEAD/gfwlist.txt -4. Gitlab: https://gitlab.com/gfwlist/gfwlist/raw/master/gfwlist.txt +4. GitLab: https://gitlab.com/gfwlist/gfwlist/raw/master/gfwlist.txt 5. TuxFamily: https://git.tuxfamily.org/gfwlist/gfwlist.git/plain/gfwlist.txt +6. GitLab (plaintext version): https://gfwlist.gitlab.io/gfwlist/gfwlist_decoded.txt + **Mirrors can alleviate the problem caused by raw file fetch at GitHub which might be a breach of [GitHub ToS](https://github.com/site/terms).** ## Stargazers over time From 74b2d73d0a6ddd43d7ea8ef1d177f65f1db45296 Mon Sep 17 00:00:00 2001 From: awslawsl233 <89617778+awslawsl233@users.noreply.github.com> Date: Fri, 15 Oct 2021 23:29:03 +0800 Subject: [PATCH 2/2] Create .gilab-ci.yml --- .gilab-ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gilab-ci.yml diff --git a/.gilab-ci.yml b/.gilab-ci.yml new file mode 100644 index 0000000..6d8d6c0 --- /dev/null +++ b/.gilab-ci.yml @@ -0,0 +1,14 @@ +image: debian:latest +pages: + stage: deploy + script: + - cat gfwlist.txt | base64 -d > gfwlist_decoded.txt + - mkdir .public + - cp -r * .public + - mv .public public + artifacts: + expire_in: 1 day + paths: + - public + only: + - master