删除单域名检测

This commit is contained in:
2024-08-20 09:37:39 +08:00
parent 2bfe68160e
commit a338591b17
7 changed files with 18 additions and 322 deletions

View File

@@ -20,21 +20,17 @@ jobs:
with:
python-version: '3.12.5'
- name: Run single domain check
run: python single_domain_check.py
- name: Run domain check
run: python domain_check.py
- name: Save output with date
run: |
today=$(date +%Y-%m-%d)
mv domain.txt "domain_$today.txt"
mv domains.txt "domains_$today.txt"
- name: Create release and upload result
run: |
today=$(date +%Y-%m-%d)
gitea release create --title "Single Domain Check $today" --assets "domain_$today.txt" --assets "domains_$today.txt"
gitea release create --title "Domain Check $today" --assets "domains_$today.txt"
env:
TOKEN: ${{ secrets.TOKEN }}