Skip to content

Update

Update #78

Workflow file for this run

name: Update
on:
schedule:
- cron: '0 16 */8 * *'
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install requests
- name: Processing data
run: |
python EpicInfo.py
- name: Get time
run: |
echo "CMsg=Updated: $(date +'%Y-%m-%d %H:%M:%S %z')" >> $GITHUB_ENV
- name: Push / Submit
uses: Smart-Transportation/push@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: main
message: ${{ env.CMsg }}