Skip to content

Commit

Permalink
Restore quotes in yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
erinysong committed Feb 24, 2024
1 parent ad3eda2 commit 073ea76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/update-gov-zone-file.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
- uses: actions/checkout@v2
- name: Download gov.txt.gz
env:
ICANN_USERNAME: ${{ secrets.ICANN_USERNAME }}
ICANN_PASSWORD: ${{ secrets.ICANN_PASSWORD }}
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 }} > gov.txt
./scripts/download_zone_file.sh '${{ env.ICANN_USERNAME }}' '${{ env.ICANN_PASSWORD }}' > gov.txt
shell: sh
# Push daily zone file to branch only if a diff is found
- name: Commit and push updated zone file update to branch
Expand Down

0 comments on commit 073ea76

Please sign in to comment.