Upload gov.txt.gz from CZDS API #40
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Upload gov.txt.gz from CZDS API | |
run-name: Upload gov.txt.gz from CZDS API | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: "5 6 * * *" | |
push: | |
branches: | |
- es/107-zone-file-script | |
paths: | |
- .github/workflows/update-gov-zone-file.yml | |
jobs: | |
update_zone_file: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Download gov.txt.gz | |
env: | |
ICANN_USERNAME: ${{ secrets.ICANN_USERNAME }} | |
ICANN_PASSWORD: ${{ secrets.ICANN_PASSWORD }} | |
run: | | |
chmod +x ./scripts/download_zone_file.sh | |
./scripts/download_zone_file.sh ${{ env.ICANN_USERNAME }} ${{ env.ICANN_PASSWORD }} | |
shell: sh | |
- uses: actions/checkout@v4 | |
# Push daily zone file to branch only if a diff is found | |
- name: Commit and push updated zone file update to branch | |
run: |- | |
git config user.name "Continuous Integration - Zone File" | |
git config user.email "[email protected]" | |
git add gov.txt | |
timestamp=$(date -u) | |
git commit -m "Daily Zone File Update ${timestamp}" || exit 0 | |
git push |