Skip to content

Fetch and deploy

Fetch and deploy #373

Workflow file for this run

name: "Fetch and deploy"
on:
workflow_dispatch:
schedule:
- cron: "30 7 * * MON,THU,SAT" # “At 07:30 on Monday, Thursday, and Saturday.” (UTC)
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v4 # checkout the repository content to github runner
- name: setup python
uses: actions/setup-python@v5
with:
python-version: "3.10" # install the python version needed
- name: install python packages
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: execute py script # run fetcher.py to get the latest data
env:
AZURE_KEY1: ${{ secrets.AZURE_KEY1 }}
# AZURE_KEY2: ${{ secrets.AZURE_KEY2 }}
run: python fetcher.py
- name: commit files
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git add -A
git commit -m ":card_file_box: Update db `date +"%d-%m-%Y"`" -a
- name: push changes
uses: ad-m/github-push-action@v0.8.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: master