sync list to dist #1145
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: sync list to dist | |
on: | |
push: | |
branches: | |
- 'master' | |
paths: | |
- 'anti-ad-**.*' | |
- 'adblock-for-dnsmasq.conf' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: clone the website | |
run: git clone https://github.com/privacy-protection-tools/anti-ad.github.io.git ~/website | |
- name: Install sing-box | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
run: | | |
sudo curl -fsSL https://sing-box.app/gpg.key -o /etc/apt/keyrings/sagernet.asc | |
sudo chmod a+r /etc/apt/keyrings/sagernet.asc | |
echo "deb [arch=`dpkg --print-architecture` signed-by=/etc/apt/keyrings/sagernet.asc] https://deb.sagernet.org/ * *" | sudo tee /etc/apt/sources.list.d/sagernet.list > /dev/null | |
sudo apt-get update | |
sudo apt-get install sing-box | |
- name: Install mihomo | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
run: | | |
case "$(uname -m)" in | |
'x86_64') ARCH='amd64' ;; | |
'x86' | 'i686' | 'i386') ARCH='386' ;; | |
'aarch64' | 'arm64') ARCH='arm64' ;; | |
'armv7l') ARCH='armv7' ;; | |
'riscv64') ARCH='riscv64' ;; | |
's390x') ARCH='s390x' ;; | |
*) ARCH='unknown' ;; | |
esac | |
echo "The architecture is: $ARCH" | |
[ "$ARCH" = 'unknown' ] || { | |
MIHOMO_VER=$(wget -q -O - 'https://github.com/MetaCubeX/mihomo/releases/download/Prerelease-Alpha/version.txt') | |
# e.g. alpha-3e966e8 | |
URL='https://github.com/MetaCubeX/mihomo/releases/download/Prerelease-Alpha/mihomo-linux-'$ARCH'-'$MIHOMO_VER'.deb' | |
# e.g. https://github.com/MetaCubeX/mihomo/releases/download/Prerelease-Alpha/mihomo-linux-amd64-alpha-3e966e8.deb | |
wget -q -O ./mihomo.deb "$URL" | |
sudo apt-get install ./mihomo.deb | |
rm -f ./mihomo.deb | |
} | |
- name: Compile binaries for sing-box/mihomo | |
run: | | |
echo 'Compiling sing-box rule-set...' | |
sing-box rule-set convert --type adguard ./anti-ad-adguard.txt --output ./anti-ad-sing-box.srs | |
sha256sum ./anti-ad-sing-box.srs | |
echo 'Compiling mihomo ruleset...' | |
mihomo convert-ruleset domain yaml ./anti-ad-clash.yaml ./anti-ad-mihomo.mrs | |
sha256sum ./anti-ad-mihomo.mrs | |
- name: Copy some list files | |
run: | | |
cp ./anti-ad-easylist.txt ~/website/docs/easylist.txt | |
cp ./anti-ad-easylist.txt.md5 ~/website/docs/easylist.txt.md5 | |
cp ./anti-ad-adguard.txt ~/website/docs/adguard.txt | |
cp ./anti-ad-adguard.txt.md5 ~/website/docs/adguard.txt.md5 | |
cp ./adblock-for-dnsmasq.conf ~/website/docs/dnsmasq.conf | |
cp ./adblock-for-dnsmasq.conf ~/website/docs/anti-ad-for-dnsmasq.conf | |
cp ./anti-ad-smartdns.conf ~/website/docs/anti-ad-for-smartdns.conf | |
cp ./anti-ad-surge.txt ~/website/docs/surge.txt | |
cp ./anti-ad-surge2.txt ~/website/docs/surge2.txt | |
cp ./anti-ad-clash.yaml ~/website/docs/clash.yaml | |
cp ./anti-ad-mihomo.mrs ~/website/docs/mihomo.mrs | |
cp ./anti-ad-domains.txt ~/website/docs/domains.txt | |
cp ./anti-ad-sing-box.srs ~/website/docs/anti-ad-sing-box.srs | |
- name: Commit files | |
run: | | |
cd ~/website | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add . | |
git commit -m "pull newest list." -a | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.PERSON_TOKEN }} | |
branch: 'master' | |
directory: '/home/runner/website' | |
repository: 'privacy-protection-tools/anti-ad.github.io' |