💡Fingerprint Update #70
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: 💡Fingerprint Update | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 0' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
- name: Setup golang | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.21.x | |
- name: Build CDN Data | |
env: | |
IPINFO_TOKEN: "${{ secrets.IPINFO_TOKEN }}" | |
run: go run . -output ../../sources_data.json | |
working-directory: cmd/generate-index | |
- name: Create local changes | |
run: | | |
git add sources_data.json | |
- name: Commit files | |
run: | | |
git config --local user.email "action@github.com" | |
git config --local user.name "GitHub Action" | |
git commit -m "Weekly fingerprints update [$(date)] :robot:" -a --allow-empty | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ github.ref }} |