Skip to content

update

update #627

Workflow file for this run

name: update
on:
schedule:
- cron: "0 3 * * *"
push:
tags:
- '*'
workflow_dispatch:
inputs:
name:
description: 'reason'
required: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
with:
ref: "master"
- uses: actions/setup-python@v2
with:
python-version: '3.8'
- run: |
sudo timedatectl set-timezone "Asia/Shanghai"
pip install -r requirements.txt
python ./main.py
- name: update readme
env:
GIT_USER: "Github Action"
GIT_EMAIL: "action@github.com"
run: |
git config user.name "${GIT_USER}"
git config user.email "${GIT_EMAIL}"
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${GITHUB_REPOSITORY}.git
git checkout master
git add .
git commit -m "Update by Github Action"
git push -u origin master