-
Notifications
You must be signed in to change notification settings - Fork 185
44 lines (34 loc) · 1.01 KB
/
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
37
38
39
40
41
42
43
# This is a basic workflow to help you get started with Actions
name: gen-wiki
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
gen-wiki:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: install deps
run: pip install scrap_engine pyyaml
- name: gen-wiki
run: python util.py wiki
- name: Commit files
run: |
git config --local user.name ${{ github.actor }}
git config user.email "${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com"
if [[ $(git diff) != "" ]]
then
git pull
git add ./wiki.md
git commit -m "Updated wiki"
fi
- name: Push changes # push the output folder to your repo
uses: ad-m/github-push-action@master
with:
fetch-depth: 0
github_token: ${{ secrets.GITHUB_TOKEN }}
force: false