Skip to content

autoupdate #212

autoupdate

autoupdate #212

Workflow file for this run

name: autoupdate
on:
workflow_dispatch:
schedule:
- cron: '15 0 * * 4'
jobs:
version_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
token: ${{ secrets.BOT }}
- name: Check Latest Version
run: |
pip3 install in_place
python autoupdate.py
git config --global user.name 'nyfair'
git config --global user.email 'nyfair2012@gmail.com'
git commit -am "Automate" || echo "nothing to update"
git push