Skip to content

.github/workflows/update.yml #131

.github/workflows/update.yml

.github/workflows/update.yml #131

Workflow file for this run

on:
schedule:
- cron: '5 20 * * *'
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PYTHON
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run Python code
run: python update.py
- name: Commit Changes
run: |
git config --global user.name 'Victorsitou'
git config --global user.email '[email protected]'
git push
git add .
git commit -m "Update events"
git push