-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (47 loc) · 1.46 KB
/
monthly_update.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
name: monthly-update
'on':
schedule:
- cron: '15 15 7 * *'
workflow_dispatch:
jobs:
run-all:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
- name: setup python
uses: actions/[email protected]
with:
python-version: "3.10"
- name: Install Poetry
run: |
python -m pip install --upgrade pip
pip install poetry
poetry --version
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run monthly update
env:
IPC_API: ${{ secrets.IPC_API }}
run: |
python update_monthly.py
- name: Save changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Actions [bot]"
git add .
git commit -m "Monthly database update"
- name: push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Deploy download folder to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: charts_download # The folder the action should deploy.
git-config-name: "GitHub Actions [bot]"
git-config-email: "[email protected]"