fix unique ips & add ipv6 merges

This commit is contained in:
Lord_Alfred
2021-07-29 23:49:00 +03:00
parent e5e503611b
commit 0a843ff842
3 changed files with 9 additions and 4 deletions
+4
View File
@@ -36,8 +36,12 @@ jobs:
- name: Merge IPv4 ranges
run: |
set -euo pipefail
# ipv4
python utils/merge.py --source=google/ipv4.txt | sort -h > google/ipv4_merged.txt
python utils/merge.py --source=amazon/ipv4.txt | sort -h > amazon/ipv4_merged.txt
# ipv6
python utils/merge.py --source=google/ipv6.txt | sort -h > google/ipv6_merged.txt
python utils/merge.py --source=amazon/ipv6.txt | sort -h > amazon/ipv6_merged.txt
- name: Commit files
env: