-
-
Notifications
You must be signed in to change notification settings - Fork 34
44 lines (38 loc) · 1.18 KB
/
update-feeds.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# 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
steps:
- name: '🛒 Checkout QGIS Hugo'
uses: actions/checkout@v3
with:
ref: main
path: ./qgis-hugo
- name: '🐍 Setup Python'
uses: actions/setup-python@v3
with:
python-version: '3.10'
architecture: 'x64'
cache: "pipenv"
- name: '🚸Install Python deps'
run: |
cd ./qgis-hugo
pip install pipenv && pipenv install -r REQUIREMENTS.txt && pipenv sync --bare
pipenv run pip freeze
- name: '🗞️ Fetch Feed Content'
run: |
cd ./qgis-hugo
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-hugo
# push_options: --force