Skip to content

fetch-heat-days

fetch-heat-days #1356

name: fetch-heat-days
on:
workflow_dispatch:
schedule:
- cron: '00 01,13 * * *' # runs at 6 am and 6 pm Pacific everyday
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v2 # checkout repository content
- name: setup python
uses: actions/setup-python@v2
with:
python-version: '3.9' # install python version
- name: install python packages
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: execute py script
env:
EMAIL_ADDRESS: ${{ secrets.EMAIL_ADDRESS }}
EMAIL_PASSWORD: ${{ secrets.EMAIL_PASSWORD }}
EMAIL_RECIPIENT: ${{ secrets.EMAIL_RECIPIENT }}
run: |
python download_extreme_heat_days.py
- name: commit files
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add -A
git commit -m "update data" -a --allow-empty --author="stiles <[email protected]>"
- name: push changes
uses: ad-m/[email protected]
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main