fixed google and apple rules

This commit is contained in:
Loyalsoldier 2019-12-15 19:13:40 +08:00 committed by GitHub
parent 7ed56de602
commit 64dbf736cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,12 +60,12 @@ jobs:
- name: Get and add google domains into temp-proxy.txt file - name: Get and add google domains into temp-proxy.txt file
run: | run: |
cd $GOPATH/src/$GEOSITE_REPO 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 - name: Get and add apple domains into temp-proxy.txt file
run: | run: |
cd $GOPATH/src/$GEOSITE_REPO 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 - name: Get and add proxy domains from @ConnersHua/Profiles into temp-proxy.txt file
run: | run: |