-
-
Notifications
You must be signed in to change notification settings - Fork 88
36 lines (32 loc) · 848 Bytes
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Docsify
on:
workflow_dispatch:
schedule:
- cron: "0 2 * * *"
jobs:
update_docsify:
name: Update docsify
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
with:
ref: docs/ghpages
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install python dependencies
run: |
python -m pip install requests
- name: Start the action
run: |
python3 update_docsify.py
- name: Commit and push
run: |-
git diff
git config --global user.email "[email protected]"
git config --global user.name "GitHub-Action"
git add -A
git commit -m "Updated docsify" || exit 0
git push