Skip to content

Update Screenshot #1234

Update Screenshot

Update Screenshot #1234

Workflow file for this run

name: Update Screenshot
on:
push:
branches:
- master
schedule:
- cron: '6 2 * * *'
jobs:
download:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Setup Python
uses: actions/[email protected]
with:
# Used to pull python distributions from actions/python-versions. Since there's a default, this is typically not supplied by the user.
token: ${{ secrets.PERSONAL_TOKEN }} # optional, default is ${{ github.token }}
- name: Download
run: |
python main.py
- name: Push
run: |
git config --global user.email "[email protected]"
git config --global user.name "iColaBot"
git add -A
git commit --allow-empty -m "Update Bing Wallpaper"
#git pull origin master
git push origin master