Update IP Rangs #104
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
# nothing | |
name: Update IP Rangs | |
# daily job | |
on: | |
push: | |
schedule: | |
- # weekly job | |
cron: "0 0 * * 1" | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "build" | |
build: | |
# The type of runner that the job will run on | |
runs-on: self-hosted | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- name: Setup Git Infomation | |
run: | | |
git config --global user.name 'Bruce' | |
git config --global user.email 'joqtdepy@duck.com' | |
- name: Recording | |
# apt-get update && apt-get install -y jq && apt-get install -y curl | |
run: | | |
URL="https://api.gcore.com/cdn/public-ip-list" | |
ms=$(curl -s $URL | jq -c '.addresses') | |
ms1="{"\"localRanges\"":$ms}" | |
echo "$ms1" | jq '.' > gcore_cdn_ip_ranges.json | |
git add ./gcore_cdn_ip_ranges.json | |
git commit -m "update gcore_cdn_ip_ranges.json" | |
- name: Pushing | |
run: | | |
git push https://${{github.actor}}:${{secrets.GITHUB_TOKEN}}@github.com/${{github.repository}}.git HEAD:${{ github.ref }} || echo "No changes to commit" |