8000 Github Action auto Updated TEST · ChristChou/ins@c1165df · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

zzs

zzs #407

Workflow file for this run

name: zzs
on:
schedule:
- cron: '50 08 * * *' #
push:
branches:
- main
jobs:
push:
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
# in this example, there is a newer version already installed, 3.7.7, so the older version will be downloaded
operating-system: ['ubuntu-20.04']
steps:
- uses: actions/checkout@v3 # Checking out the repo
- name: Run with setup-python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.9'
update-environment: false
cache: 'pipenv'
- name: Install pipenv
run: pip3 install --user pipenv
- name: Install dependecies
run: pipenv --python python3 && pipenv install
- name: Build
run: pipenv run build
- name: Commit and push if changed # 更新README.md
run: |
git diff
git config --global user.email "zxcvb1999@qq.com"
git config --global user.name "zzs"
git add README.md
git commit -m "Github Action auto Updated TEST"
git push
0