generated from palewire/python-open-source-template
-
Notifications
You must be signed in to change notification settings - Fork 3
59 lines (49 loc) · 1.43 KB
/
scrape.yaml
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Scrape
on:
workflow_dispatch:
schedule:
- cron: '0 6 * * *'
permissions:
contents: write
jobs:
scrape:
name: Scrape
runs-on: ubuntu-latest
steps:
- id: checkout
name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
cache: 'pipenv'
- name: Install pipenv
run: curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
shell: bash
- id: install-python-dependencies
name: Install Python dependencies
run: pipenv sync
shell: bash
- name: Run scrape command
run: pipenv run python -m src.scrape > data/dotplot.csv
shell: bash
- name: Datestamp
run: date > data/timestamp.txt
shell: bash
- name: Commit results
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "[email protected]"
git config pull.rebase false
git status
git pull origin $GITHUB_REF
git add ./data
git commit -m "Scrape" && git push || true
shell: bash
- id: publish-to-bln
name: Publish files to biglocalnews.org
uses: biglocalnews/upload-files@v5
with:
api-key: ${{ secrets.BLN_API_TOKEN }}
project-id: ${{ secrets.BLN_PROJECT_ID }}
path: ./data/