Skip to content

weekly-update

weekly-update #116

name: weekly-update
'on':
schedule:
- cron: '7 7 * * 1'
workflow_dispatch:
jobs:
run-all:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: setup python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Poetry
run: |
python -m ensurepip --upgrade
pip install poetry
poetry --version
- name: Install dependencies
run: |
poetry install
- name: Run weekly update
env:
IPC_API: ${{ secrets.IPC_API }}
run: |
poetry run python update_weekly.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 "Weekly 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.