From 64dbf736cba67519d7945768ab2f9d200eb02779 Mon Sep 17 00:00:00 2001 From: Loyalsoldier Date: Sun, 15 Dec 2019 19:13:40 +0800 Subject: [PATCH] fixed google and apple rules --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ce9c1c4..d88e568 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -60,12 +60,12 @@ jobs: - name: Get and add google domains into temp-proxy.txt file run: | cd $GOPATH/src/$GEOSITE_REPO - curl -sSL $GOOGLE_URL >> temp-proxy.txt + curl -sSL $GOOGLE_URL | awk -F '/' '{print $2}' >> temp-proxy.txt - name: Get and add apple domains into temp-proxy.txt file run: | cd $GOPATH/src/$GEOSITE_REPO - curl -sSL $APPLE_URL >> temp-proxy.txt + curl -sSL $APPLE_URL | awk -F '/' '{print $2}' >> temp-proxy.txt - name: Get and add proxy domains from @ConnersHua/Profiles into temp-proxy.txt file run: |