diff --git a/.github/workflows/generate-blocklist.yml b/.github/workflows/generate-blocklist.yml index dbb272b..84940b8 100644 --- a/.github/workflows/generate-blocklist.yml +++ b/.github/workflows/generate-blocklist.yml @@ -10,11 +10,13 @@ jobs: build: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v4 - name: directory clean run: | rm -rf ./blocklist/* - - name: Feed recuperation with convert + + - name: Base blocklist generation run: | mkdir -p ./blocklist cd ./blocklist @@ -40,6 +42,13 @@ jobs: cat * >> respect-my-internet.txt curl https://raw.githubusercontent.com/firehol/blocklist-ipsets/refs/heads/master/firehol_level3.netset | sed '/^#/d' >> firehol-lv3.txt + + - name: Extra blocklists generation + + for url in https://raw.githubusercontent.com/blocklistproject/Lists/refs/heads/master/fortnite.txt https://raw.githubusercontent.com/blocklistproject/Lists/refs/heads/master/adobe.txt https://raw.githubusercontent.com/blocklistproject/Lists/refs/heads/master/tiktok.txt https://raw.githubusercontent.com/blocklistproject/Lists/refs/heads/master/whatsapp.txt https://raw.githubusercontent.com/blocklistproject/Lists/refs/heads/master/youtube.txt + do + curl $url | sed '/^#/d' > $(basename $url) + done - name: Configure Git run: |