mirror of
https://github.com/Loyalsoldier/clash-rules.git
synced 2024-11-10 03:15:35 +08:00
99 lines
4.5 KiB
YAML
99 lines
4.5 KiB
YAML
name: Generate RULE-SET for Premium Edition of Clash
|
|
on:
|
|
schedule:
|
|
- cron: "30 22 * * *"
|
|
push:
|
|
branches:
|
|
- master
|
|
paths-ignore:
|
|
- "**/README.md"
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set variables
|
|
run: |
|
|
echo "::set-env name=RELEASE_NAME::Released on $(date +%Y%m%d%H%M)"
|
|
echo "::set-env name=TAG_NAME::$(date +%Y%m%d%H%M)"
|
|
echo "::set-env name=v2fly_icloud::https://raw.githubusercontent.com/v2fly/domain-list-community/release/icloud.txt"
|
|
echo "::set-env name=v2fly_apple::https://raw.githubusercontent.com/v2fly/domain-list-community/release/apple.txt"
|
|
echo "::set-env name=Loyalsoldier_reject::https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/reject-list.txt"
|
|
echo "::set-env name=Loyalsoldier_proxy::https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/proxy-list.txt"
|
|
echo "::set-env name=Loyalsoldier_direct::https://raw.githubusercontent.com/Loyalsoldier/v2ray-rules-dat/release/direct-list.txt"
|
|
echo "::set-env name=felixonmars_apple::https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/apple.china.conf"
|
|
echo "::set-env name=felixonmars_google::https://raw.githubusercontent.com/felixonmars/dnsmasq-china-list/master/google.china.conf"
|
|
echo "::set-env name=ipipnet_chinaiplist::https://raw.githubusercontent.com/17mon/china_ip_list/master/china_ip_list.txt"
|
|
shell: bash
|
|
|
|
- name: Checkout the "hidden" branch
|
|
uses: actions/checkout@v2.3.1
|
|
with:
|
|
ref: hidden
|
|
|
|
- name: Generate icloud.txt file
|
|
run: |
|
|
echo "payload:" > icloud.txt
|
|
curl -sSL ${v2fly_icloud} | grep -E "^(full|domain):" | awk -F ':' '{printf " - |+.%s|\n", $2}' | sed "s/|/'/g" >> icloud.txt
|
|
|
|
- name: Generate google.txt file
|
|
run: |
|
|
echo "payload:" > google.txt
|
|
curl -sSL ${felixonmars_google} | perl -ne '/^server=\/([^\/]+)\// && print " - |+.$1|\n"' | sed "s/|/'/g" >> google.txt
|
|
|
|
- name: Generate apple.txt file
|
|
run: |
|
|
curl -sSL ${felixonmars_apple} | perl -ne '/^server=\/([^\/]+)\// && print "$1\n"' > apple.temp
|
|
curl -sSL ${v2fly_apple} | grep -E "^(full|domain):" | awk -F ':' '{print $2}' >> apple.temp
|
|
echo "payload:" > apple.txt
|
|
cat apple.temp | perl -ne '/^([-_a-zA-Z0-9]+(\.[-_a-zA-Z0-9]+)*)/ && print " - |+.$1|\n"' | sed "s/|/'/g" >> apple.txt
|
|
|
|
- name: Generate direct.txt file
|
|
run: |
|
|
echo "payload:" > direct.txt
|
|
curl -sSL ${Loyalsoldier_direct} | grep -Ev "^(regex|keyword):" | perl -ne '/^([-_a-zA-Z0-9]+(\.[-_a-zA-Z0-9]+)*)/ && print " - |+.$1|\n"' | sed "s/|/'/g" >> direct.txt
|
|
|
|
- name: Generate proxy.txt file
|
|
run: |
|
|
echo "payload:" > proxy.txt
|
|
curl -sSL ${Loyalsoldier_proxy} | grep -Ev "^(regex|keyword):" | perl -ne '/^([-_a-zA-Z0-9]+(\.[-_a-zA-Z0-9]+)*)/ && print " - |+.$1|\n"' | sed "s/|/'/g" >> proxy.txt
|
|
|
|
- name: Generate reject.txt file
|
|
run: |
|
|
echo "payload:" > reject.txt
|
|
curl -sSL ${Loyalsoldier_reject} | grep -Ev "^(regex|keyword):" | perl -ne '/^([-_a-zA-Z0-9]+(\.[-_a-zA-Z0-9]+)*)/ && print " - |+.$1|\n"' | sed "s/|/'/g" >> reject.txt
|
|
|
|
- name: Generate cncidr.txt file
|
|
run: |
|
|
echo "payload:" > cncidr.txt
|
|
curl -sSL ${ipipnet_chinaiplist} | perl -ne '/^(\d{1,3}(\.\d{1,3}){3}\/\d{1,2})/ && print " - |$1|\n"' | sed "s/|/'/g" >> cncidr.txt
|
|
|
|
- name: Move files to publish directory
|
|
run: |
|
|
mkdir -p publish
|
|
install -p {apple,icloud,google,proxy,direct,reject,cncidr,lancidr}.txt ./publish/
|
|
|
|
- name: Release and upload assets
|
|
uses: softprops/action-gh-release@v1
|
|
with:
|
|
name: ${{ env.RELEASE_NAME }}
|
|
tag_name: ${{ env.TAG_NAME }}
|
|
draft: false
|
|
prerelease: false
|
|
files: |
|
|
./publish/*
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Git push assets to "release" branch
|
|
run: |
|
|
cd publish
|
|
git init
|
|
git config --local user.name "actions"
|
|
git config --local user.email "action@github.com"
|
|
git checkout -b release
|
|
git add .
|
|
git commit -m "${{ env.RELEASE_NAME }}"
|
|
git remote add origin "https://${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}"
|
|
git push -f -u origin release
|