2020-01-27 20:45:39 +08:00
|
|
|
name: Build V2Ray rules dat files
|
2019-12-13 15:23:54 +08:00
|
|
|
on:
|
|
|
|
schedule:
|
2019-12-22 22:09:23 +08:00
|
|
|
- cron: "0 22 * * *"
|
2019-12-13 23:26:24 +08:00
|
|
|
push:
|
|
|
|
branches:
|
2019-12-15 18:14:44 +08:00
|
|
|
- master
|
2019-12-10 17:28:39 +08:00
|
|
|
|
2019-12-10 15:40:58 +08:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
name: Build
|
2019-12-10 17:17:09 +08:00
|
|
|
runs-on: ubuntu-latest
|
2019-12-10 19:28:01 +08:00
|
|
|
|
2019-12-10 15:40:58 +08:00
|
|
|
steps:
|
2020-02-26 22:02:08 +08:00
|
|
|
- name: Setup Go 1.14
|
2019-12-10 15:40:58 +08:00
|
|
|
uses: actions/setup-go@v1
|
|
|
|
with:
|
2020-02-26 22:02:08 +08:00
|
|
|
go-version: 1.14
|
2019-12-10 15:40:58 +08:00
|
|
|
id: go
|
|
|
|
|
2019-12-23 20:42:11 +08:00
|
|
|
- name: Set $GOPATH and more variables
|
2019-12-13 23:26:24 +08:00
|
|
|
run: |
|
2019-12-23 20:42:11 +08:00
|
|
|
echo "::set-env name=NAME::Released on $(date +%Y%m%d%H%M)"
|
|
|
|
echo "::set-env name=TAG_NAME::$(date +%Y%m%d%H%M)"
|
2019-12-13 23:26:24 +08:00
|
|
|
echo "::set-env name=GEOIP_REPO::github.com/v2ray/geoip"
|
|
|
|
echo "::set-env name=GEOSITE_REPO::github.com/v2ray/domain-list-community"
|
2020-01-10 14:15:44 +08:00
|
|
|
echo "::set-env name=CHINA_DOMAINS_URL::https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/accelerated-domains.china.conf"
|
2020-01-09 19:00:24 +08:00
|
|
|
echo "::set-env name=GOOGLE_DOMAINS_URL::https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/google.china.conf"
|
|
|
|
echo "::set-env name=APPLE_DOMAINS_URL::https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/apple.china.conf"
|
2020-01-27 14:14:27 +08:00
|
|
|
echo "::set-env name=CDN_DOMAINS_URL::https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/removed-cdn.txt"
|
2020-01-09 19:00:24 +08:00
|
|
|
echo "::set-env name=GFWLIST_DOMAINS_URL::https://cokebar.github.io/gfwlist2dnsmasq/gfwlist_domain.txt"
|
|
|
|
echo "::set-env name=GREATFIRE_DOMAINS_URL::https://raw.githubusercontent.com/wongsyrone/domain-block-list/master/domains.txt"
|
2020-01-10 16:10:06 +08:00
|
|
|
echo "::set-env name=PROFILES_URL::https://raw.githubusercontent.com/ConnersHua/Profiles/master/Shadow/Pro.conf"
|
2020-01-10 14:15:44 +08:00
|
|
|
echo "::set-env name=GEQ1AN_RULES_APPLE_URL::https://raw.githubusercontent.com/GeQ1an/Rules/master/QuantumultX/Filter/Apple.list"
|
|
|
|
echo "::set-env name=GEQ1AN_RULES_MICROSOFT_URL::https://raw.githubusercontent.com/GeQ1an/Rules/master/QuantumultX/Filter/Microsoft.list"
|
|
|
|
echo "::set-env name=GEQ1AN_RULES_GLOBAL_MEDIA_URL::https://raw.githubusercontent.com/GeQ1an/Rules/master/QuantumultX/Filter/GMedia.list"
|
|
|
|
echo "::set-env name=GEQ1AN_RULES_OUTSIDE_URL::https://raw.githubusercontent.com/GeQ1an/Rules/master/QuantumultX/Filter/Outside.list"
|
|
|
|
echo "::set-env name=GEQ1AN_RULES_REJECT_URL::https://raw.githubusercontent.com/GeQ1an/Rules/master/QuantumultX/Filter/AdBlock.list"
|
|
|
|
echo "::set-env name=LHIE1_RULES_REJECT_URL::https://raw.githubusercontent.com/lhie1/Rules/master/Auto/REJECT.conf"
|
2019-12-31 02:27:18 +08:00
|
|
|
echo "::set-env name=GOPATH::$(dirname $GITHUB_WORKSPACE)"
|
2019-12-13 23:26:24 +08:00
|
|
|
echo "::add-path::$(dirname $GITHUB_WORKSPACE)/bin"
|
|
|
|
shell: bash
|
2019-12-11 02:56:31 +08:00
|
|
|
|
2020-01-27 20:45:39 +08:00
|
|
|
- name: Checkout the "hidden" branch
|
2019-12-23 20:42:11 +08:00
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
ref: hidden
|
|
|
|
|
2020-01-27 20:45:39 +08:00
|
|
|
- name: Get GeoLite2 zip file
|
2019-12-31 22:39:50 +08:00
|
|
|
run: |
|
2019-12-31 23:40:04 +08:00
|
|
|
curl -L -o GeoLite2-Country-CSV.zip "https://download.maxmind.com/app/geoip_download?edition_id=GeoLite2-Country-CSV&license_key=JvbzLLx7qBZT&suffix=zip"
|
2019-12-31 22:39:50 +08:00
|
|
|
unzip GeoLite2-Country-CSV.zip
|
|
|
|
rm -f GeoLite2-Country-CSV.zip
|
|
|
|
mv GeoLite2* geoip
|
2019-12-10 17:28:39 +08:00
|
|
|
|
2019-12-31 22:39:50 +08:00
|
|
|
- name: Generate geoip.dat file
|
2019-12-13 23:26:24 +08:00
|
|
|
run: |
|
2019-12-31 22:39:50 +08:00
|
|
|
go get -u -v -insecure $GEOIP_REPO
|
|
|
|
geoip --country=./geoip/GeoLite2-Country-Locations-en.csv --ipv4=./geoip/GeoLite2-Country-Blocks-IPv4.csv --ipv6=./geoip/GeoLite2-Country-Blocks-IPv6.csv
|
2019-12-13 23:26:24 +08:00
|
|
|
mkdir -p ./publish
|
|
|
|
mv ./geoip.dat ./publish/
|
|
|
|
|
|
|
|
- name: Download geosite project
|
|
|
|
run: |
|
2019-12-13 23:36:57 +08:00
|
|
|
go get -u -v -insecure $GEOSITE_REPO
|
2020-01-27 20:45:39 +08:00
|
|
|
|
2020-01-10 14:15:44 +08:00
|
|
|
- name: Get and add direct domains into temp-direct.txt file
|
|
|
|
run: |
|
2020-01-27 22:29:56 +08:00
|
|
|
curl -sSL $CHINA_DOMAINS_URL | perl -ne '/^server=\/([^\/]+)\// && print "$1\n"' > temp-direct.txt
|
2020-01-10 14:15:44 +08:00
|
|
|
|
2020-01-10 13:22:40 +08:00
|
|
|
- name: Get and add proxy domains into temp-proxy.txt file
|
2019-12-13 23:26:24 +08:00
|
|
|
run: |
|
2020-01-27 22:47:32 +08:00
|
|
|
curl -sSL $GFWLIST_DOMAINS_URL | perl -ne '/^((?=^.{3,255})[a-zA-Z0-9][-_a-zA-Z0-9]{0,62}(\.[a-zA-Z0-9][-_a-zA-Z0-9]{0,62})+)/ && print "$1\n"' > temp-proxy.txt
|
|
|
|
curl -sSL $GREATFIRE_DOMAINS_URL | perl -ne '/^((?=^.{3,255})[a-zA-Z0-9][-_a-zA-Z0-9]{0,62}(\.[a-zA-Z0-9][-_a-zA-Z0-9]{0,62})+)/ && print "$1\n"' >> temp-proxy.txt
|
2020-01-27 22:29:56 +08:00
|
|
|
curl -sSL $GOOGLE_DOMAINS_URL | perl -ne '/^server=\/([^\/]+)\// && print "$1\n"' >> temp-proxy.txt
|
|
|
|
curl -sSL $APPLE_DOMAINS_URL | perl -ne '/^server=\/([^\/]+)\// && print "$1\n"' >> temp-proxy.txt
|
2020-01-27 22:47:32 +08:00
|
|
|
curl -sSL $CDN_DOMAINS_URL| perl -ne '/^((?=^.{3,255})[a-zA-Z0-9][-_a-zA-Z0-9]{0,62}(\.[a-zA-Z0-9][-_a-zA-Z0-9]{0,62})+)/ && print "$1\n"' >> temp-proxy.txt
|
2020-01-10 16:10:06 +08:00
|
|
|
curl -sSL $PROFILES_URL | awk -F ',' '/^DOMAIN(,|\-SUFFIX,).+PROXY/ {print $2}' >> temp-proxy.txt
|
2020-01-10 14:15:44 +08:00
|
|
|
curl -sSL $GEQ1AN_RULES_APPLE_URL | awk -F ',' '/^(HOST|DOMAIN)(,|\-SUFFIX,).+Apple/ {print $2}' >> temp-proxy.txt
|
|
|
|
curl -sSL $GEQ1AN_RULES_MICROSOFT_URL | awk -F ',' '/^(HOST|DOMAIN)(,|\-SUFFIX,).+Microsoft/ {print $2}' >> temp-proxy.txt
|
|
|
|
curl -sSL $GEQ1AN_RULES_GLOBAL_MEDIA_URL | awk -F ',' '/^(HOST|DOMAIN)(,|\-SUFFIX,).+GMedia/ {print $2}' >> temp-proxy.txt
|
|
|
|
curl -sSL $GEQ1AN_RULES_OUTSIDE_URL | awk -F ',' '/^(HOST|DOMAIN)(,|\-SUFFIX,).+Outside/ {print $2}' >> temp-proxy.txt
|
2020-01-27 20:45:39 +08:00
|
|
|
|
2020-01-10 13:22:40 +08:00
|
|
|
- name: Get and add reject domains into temp-reject.txt file
|
2019-12-14 01:33:23 +08:00
|
|
|
run: |
|
2020-01-10 16:10:06 +08:00
|
|
|
curl -sSL $PROFILES_URL | awk -F ',' '/^DOMAIN(,|\-SUFFIX,).+REJECT/ {print $2}' > temp-reject.txt
|
2020-01-10 14:15:44 +08:00
|
|
|
curl -sSL $GEQ1AN_RULES_REJECT_URL | awk -F ',' '/^(HOST|DOMAIN)(,|\-SUFFIX,).+AdBlock/ {print $2}' >> temp-reject.txt
|
|
|
|
curl -sSL $LHIE1_RULES_REJECT_URL | awk -F ',' '/^DOMAIN(,|\-SUFFIX,).+REJECT/ {print $2}' >> temp-reject.txt
|
2019-12-14 01:33:23 +08:00
|
|
|
|
2020-01-10 13:22:40 +08:00
|
|
|
- name: Add proxy and direct domains from "hidden" branch to appropriate temp files
|
2019-12-23 20:42:11 +08:00
|
|
|
run: |
|
|
|
|
cat proxy.txt >> temp-proxy.txt
|
|
|
|
cat direct.txt >> temp-direct.txt
|
|
|
|
|
2020-01-27 22:29:56 +08:00
|
|
|
- name: Sort and generate lists
|
2019-12-15 18:14:44 +08:00
|
|
|
run: |
|
2020-01-27 22:47:32 +08:00
|
|
|
cat temp-proxy.txt | sort --ignore-case -u | perl -ne '/^((?=^.{3,255})[a-zA-Z0-9][-_a-zA-Z0-9]{0,62}(\.[a-zA-Z0-9][-_a-zA-Z0-9]{0,62})+)/ && print "$1\n"' > $GOPATH/src/$GEOSITE_REPO/data/proxylist
|
|
|
|
cat temp-proxy.txt | sort --ignore-case -u | perl -ne 'print if not /^((?=^.{3,255})[a-zA-Z0-9][-_a-zA-Z0-9]{0,62}(\.[a-zA-Z0-9][-_a-zA-Z0-9]{0,62})+)/' > proxy-excluse-list.txt
|
|
|
|
cat temp-direct.txt | sort --ignore-case -u | perl -ne '/^((?=^.{3,255})[a-zA-Z0-9][-_a-zA-Z0-9]{0,62}(\.[a-zA-Z0-9][-_a-zA-Z0-9]{0,62})+)/ && print "$1\n"' > $GOPATH/src/$GEOSITE_REPO/data/directlist
|
|
|
|
cat temp-direct.txt | sort --ignore-case -u | perl -ne 'print if not /^((?=^.{3,255})[a-zA-Z0-9][-_a-zA-Z0-9]{0,62}(\.[a-zA-Z0-9][-_a-zA-Z0-9]{0,62})+)/' > direct-excluse-list.txt
|
|
|
|
cat temp-reject.txt | sort --ignore-case -u | perl -ne '/^((?=^.{3,255})[a-zA-Z0-9][-_a-zA-Z0-9]{0,62}(\.[a-zA-Z0-9][-_a-zA-Z0-9]{0,62})+)/ && print "$1\n"' > $GOPATH/src/$GEOSITE_REPO/data/rejectlist
|
|
|
|
cat temp-reject.txt | sort --ignore-case -u | perl -ne 'print if not /^((?=^.{3,255})[a-zA-Z0-9][-_a-zA-Z0-9]{0,62}(\.[a-zA-Z0-9][-_a-zA-Z0-9]{0,62})+)/' > reject-excluse-list.txt
|
2019-12-15 18:14:44 +08:00
|
|
|
|
2020-01-10 13:22:40 +08:00
|
|
|
- name: Add list into appropriate category file
|
2019-12-15 18:14:44 +08:00
|
|
|
run: |
|
2019-12-15 18:25:24 +08:00
|
|
|
cd $GOPATH/src/$GEOSITE_REPO/data
|
2019-12-15 18:14:44 +08:00
|
|
|
echo "include:proxylist" >> geolocation-\!cn
|
|
|
|
echo "include:directlist" >> cn
|
2020-01-10 11:52:39 +08:00
|
|
|
echo "include:rejectlist" >> category-ads-all
|
2019-12-15 18:14:44 +08:00
|
|
|
|
2019-12-13 23:26:24 +08:00
|
|
|
- name: Build geosite.dat file
|
|
|
|
run: |
|
2019-12-13 23:36:57 +08:00
|
|
|
domain-list-community
|
|
|
|
mv ./dlc.dat ./publish/geosite.dat
|
2020-01-27 22:29:56 +08:00
|
|
|
mv ./*-excluse-list.txt ./publish/
|
2020-01-12 02:11:39 +08:00
|
|
|
cp -f $GOPATH/src/$GEOSITE_REPO/data/{proxy,direct,reject}list ./publish/
|
2019-12-13 23:26:24 +08:00
|
|
|
|
2020-02-24 15:49:06 +08:00
|
|
|
- name: Generate dat files sha256 hash
|
|
|
|
run: |
|
2020-02-24 15:54:01 +08:00
|
|
|
cd ./publish
|
|
|
|
sha256sum geoip.dat > geoip.dat.sha256
|
|
|
|
sha256sum geosite.dat > geosite.dat.sha256
|
2020-02-24 15:49:06 +08:00
|
|
|
|
2019-12-14 06:43:12 +08:00
|
|
|
- name: Release dat files
|
2019-12-13 23:26:24 +08:00
|
|
|
uses: Ricky-Hao/action-release@master
|
|
|
|
env:
|
2019-12-13 23:51:37 +08:00
|
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
2019-12-13 23:26:24 +08:00
|
|
|
ASSET_PATH: publish
|