Add transfer workflow

This commit is contained in:
powe97 2024-02-29 17:16:39 -05:00
parent 9585cc37e4
commit 382f9080e5
No known key found for this signature in database
GPG Key ID: 7D1663B10978D1BA
1 changed files with 77 additions and 0 deletions

77
.github/workflows/transfer.yml vendored Normal file
View File

@ -0,0 +1,77 @@
name: Scrape transfer and update file
on:
workflow_dispatch:
# schedule:
# - cron: '15 * * * *'
concurrency:
group: transfer-scraper
jobs:
scrape-transfer:
name: Scrape transfer guide
runs-on: ubuntu-latest
steps:
- name: Checkout scraping repo
uses: actions/checkout@v4
with:
path: quatalog-scraping
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: '3.11'
cache: 'pip'
- name: Install dependencies
working-directory: quatalog-scraping/transfer_scraper
run: pip install -r 'requirements.txt'
- name: Log IP
run: echo "Public IP: $(curl -s 'https://ipinfo.io/ip')"
- name: Retrieve existing data
run:
mkdir data
cd data
wget 'https://raw.githubusercontent.com/powe97/rpi-transfer-scraper/main/transfer.json'
wget 'https://raw.githubusercontent.com/powe97/rpi-transfer-scraper/main/transfer_state.json'
- name: Scrape transfer guide
run: python3 quatalog-scraping/transfer_scraper data/transfer.json data/transfer_state.json
- name: Upload data to artifact
uses: actions/upload-artifact@v4
with:
name: transfer-data
path: data/
push-new-data:
name: Push new data to data repo
runs-on: ubuntu-latest
needs: [scrape-data]
steps:
- name: Clone Quatalog data
uses: actions/checkout@v3
with:
repository: quatalog/data
path: quatalog-data
token: ${{ secrets.PUSH_TOKEN }}
- name: Download data from artifact
uses: actions/download-artifact@v3
with:
name: transfer-data
path: data/
- name: Copy data to repo directory
run: |
rsync -avz data/ quatalog-data/
- name: Push new data
working-directory: quatalog-data
run: |
git config user.name "Quatalog Updater"
git config user.email "github_actions@quatalog.com"
git add transfer.json transfer_state.json
git commit -m "$(date)" || exit 0
git push