2019-12-13 23:26:24 +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-23 21:39:20 +08:00
|
|
|
- hidden
|
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:
|
2019-12-23 21:39:20 +08:00
|
|
|
- name: Setup Go 1.13
|
2019-12-10 15:40:58 +08:00
|
|
|
uses: actions/setup-go@v1
|
|
|
|
with:
|
|
|
|
go-version: 1.13
|
|
|
|
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: |
|
|
|
|
echo "::set-env name=GOPATH::$(dirname $GITHUB_WORKSPACE)"
|
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"
|
2019-12-15 18:14:44 +08:00
|
|
|
echo "::set-env name=GOOGLE_URL::https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/google.china.conf"
|
|
|
|
echo "::set-env name=APPLE_URL::https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/apple.china.conf"
|
2019-12-13 23:26:24 +08:00
|
|
|
echo "::set-env name=GFWLIST_URL::https://cokebar.github.io/gfwlist2dnsmasq/gfwlist_domain.txt"
|
2019-12-15 16:11:57 +08:00
|
|
|
echo "::set-env name=Blocked_DOMAINS_URL::https://raw.githubusercontent.com/wongsyrone/domain-block-list/master/domains.txt"
|
2019-12-13 23:26:24 +08:00
|
|
|
echo "::set-env name=CHINA_DOMAINS_URL::https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/accelerated-domains.china.conf"
|
2019-12-23 21:39:20 +08:00
|
|
|
echo "::set-env name=Profiles_URL::https://raw.githubusercontent.com/ConnersHua/Profiles/master/Shadow/Pro.conf"
|
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
|
|
|
|
2019-12-23 20:42:11 +08:00
|
|
|
- name: Checkout branch named hidden of this repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
with:
|
|
|
|
ref: hidden
|
|
|
|
|
2019-12-23 21:39:20 +08:00
|
|
|
- name: Get GeoLite2 file
|
2019-12-10 15:40:58 +08:00
|
|
|
run: |
|
2019-12-13 23:26:24 +08:00
|
|
|
curl -sSL -O https://geolite.maxmind.com/download/geoip/database/GeoLite2-Country-CSV.zip
|
|
|
|
unzip GeoLite2-Country-CSV.zip
|
|
|
|
rm -f GeoLite2-Country-CSV.zip
|
|
|
|
mv GeoLite2* geoip
|
2019-12-10 17:28:39 +08:00
|
|
|
|
2019-12-13 23:26:24 +08:00
|
|
|
- name: Generate geoip.dat file
|
|
|
|
run: |
|
|
|
|
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
|
|
|
|
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
|
2019-12-13 23:26:24 +08:00
|
|
|
|
2019-12-23 20:42:11 +08:00
|
|
|
- name: Get and add gfwlist domains into temp-proxy.txt file
|
2019-12-13 23:26:24 +08:00
|
|
|
run: |
|
2019-12-15 18:14:44 +08:00
|
|
|
curl -sSL $GFWLIST_URL > temp-proxy.txt
|
|
|
|
|
|
|
|
- name: Get and add google domains into temp-proxy.txt file
|
|
|
|
run: |
|
2019-12-15 19:13:40 +08:00
|
|
|
curl -sSL $GOOGLE_URL | awk -F '/' '{print $2}' >> temp-proxy.txt
|
2019-12-13 23:26:24 +08:00
|
|
|
|
2019-12-15 18:14:44 +08:00
|
|
|
- name: Get and add apple domains into temp-proxy.txt file
|
2019-12-14 01:33:23 +08:00
|
|
|
run: |
|
2019-12-15 19:13:40 +08:00
|
|
|
curl -sSL $APPLE_URL | awk -F '/' '{print $2}' >> temp-proxy.txt
|
2019-12-15 18:14:44 +08:00
|
|
|
|
|
|
|
- name: Get and add proxy domains from @ConnersHua/Profiles into temp-proxy.txt file
|
|
|
|
run: |
|
2019-12-24 01:25:05 +08:00
|
|
|
curl -sSL $Profiles_URL | awk -F ',' '/^DOMAIN(,|\-SUFFIX,).+PROXY/ {print $2}' >> temp-proxy.txt
|
2019-12-15 16:11:57 +08:00
|
|
|
|
2019-12-15 18:14:44 +08:00
|
|
|
- name: Get and add blocked domains from @wongsyrone/domain-block-list into temp-proxy.txt file
|
2019-12-15 16:11:57 +08:00
|
|
|
run: |
|
2019-12-15 18:14:44 +08:00
|
|
|
curl -sSL $Blocked_DOMAINS_URL >> temp-proxy.txt
|
2019-12-14 01:33:23 +08:00
|
|
|
|
2019-12-15 18:14:44 +08:00
|
|
|
- name: Get and add direct domains from @ConnersHua/Profiles into temp-direct.txt file
|
2019-12-14 01:33:23 +08:00
|
|
|
run: |
|
2019-12-24 01:25:05 +08:00
|
|
|
curl -sSL $Profiles_URL | awk -F ',' '/^DOMAIN(,|\-SUFFIX,).+DIRECT/ {print $2}' > temp-direct.txt
|
2019-12-14 01:33:23 +08:00
|
|
|
|
2019-12-23 20:42:11 +08:00
|
|
|
- name: Get and add chinalist domains into temp-direct.txt file
|
2019-12-13 23:26:24 +08:00
|
|
|
run: |
|
2019-12-15 18:14:44 +08:00
|
|
|
curl -sSL $CHINA_DOMAINS_URL | awk -F '/' '{print $2}' >> temp-direct.txt
|
2019-12-13 23:26:24 +08:00
|
|
|
|
2019-12-23 20:42:11 +08:00
|
|
|
- name: Get and add rejected domains from @ConnersHua/Profiles into category-ads-all
|
2019-12-14 01:33:23 +08:00
|
|
|
run: |
|
|
|
|
cd $GOPATH/src/$GEOSITE_REPO/data
|
2019-12-24 01:25:05 +08:00
|
|
|
curl -sSL $Profiles_URL | awk -F ',' '/^DOMAIN(,|\-SUFFIX,).+REJECT/ {print $2}' > profilereject
|
2019-12-14 01:33:23 +08:00
|
|
|
echo "include:profilereject" >> category-ads-all
|
|
|
|
|
2019-12-23 20:42:11 +08:00
|
|
|
- name: Add proxy and direct domains from the branch named hidden of this repo to appropriate temp files
|
|
|
|
run: |
|
|
|
|
cat proxy.txt >> temp-proxy.txt
|
|
|
|
cat direct.txt >> temp-direct.txt
|
|
|
|
|
2019-12-23 21:39:20 +08:00
|
|
|
- name: Remove repeated domains and write domains to appropriate list
|
2019-12-15 18:14:44 +08:00
|
|
|
run: |
|
2019-12-23 20:42:11 +08:00
|
|
|
cat temp-proxy.txt | sort --ignore-case -u > $GOPATH/src/$GEOSITE_REPO/data/proxylist
|
|
|
|
cat temp-direct.txt | sort --ignore-case -u > $GOPATH/src/$GEOSITE_REPO/data/directlist
|
2019-12-15 18:14:44 +08:00
|
|
|
|
|
|
|
- name: Add lists into appropriate category
|
|
|
|
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
|
|
|
|
|
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
|
2019-12-13 23:26:24 +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
|