⚒️ Scrape and commit #1384
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
# This workflow scrapes the latest show episodes and commits the new episode and data | |
# files to the repo. | |
name: ⚒️ Scrape and commit | |
on: | |
schedule: | |
- cron: '0 0,12 * * *' # At midnight & noon UTC | |
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab | |
jobs: | |
scrape: | |
runs-on: ubuntu-latest | |
if: github.repository_owner == 'qgis' | |
steps: | |
- name: '🛒 Checkout QGIS Website' | |
uses: actions/checkout@v3 | |
with: | |
ref: main | |
path: ./qgis-website | |
- name: '🐍 Setup Python' | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.10' | |
architecture: 'x64' | |
cache: "pipenv" | |
- name: '🚸Install Python deps' | |
run: | | |
cd ./qgis-website | |
pip install pipenv && pipenv install -r REQUIREMENTS.txt && pipenv sync --bare | |
pipenv run pip freeze | |
- name: '🗞️ Fetch Feed Content' | |
run: | | |
cd ./qgis-website | |
pipenv run pip freeze | |
pipenv run ./fetch_feeds.py | |
- name: '✉️ Commit' | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 'Funders scraped and committed via a GitHub Action.' | |
repository: ./qgis-website | |
# push_options: --force |