-
Notifications
You must be signed in to change notification settings - Fork 5
66 lines (52 loc) · 1.45 KB
/
build.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: Link check
on: [push]
jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
config-file: 'mlc_config.json'
md2zhihu:
# Disable building!
# All-in-one format results in a too big page!
if: ${{ false }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: drmingdrmer/md2zhihu@main
env:
GITHUB_USERNAME: ${{ github.repository_owner }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
output_dir: .
target_platform: github
asset_branch: "${{ github.ref_name }}-asset"
# disable push for md2zhihu
output_branch: ""
pattern: >
src/README.md
src/CN.md
- name: build TOC
shell: bash
run: |
npm install -g --verbose doctoc
make toc
- name: commit and push
shell: bash
run: |
git add ./README.md
git add ./CN.md
if git diff-index --quiet HEAD --; then
echo "Nothing to commit"
else
changes="$(git diff --stat --cached | head -n1)"
git \
-c "user.name=drmingdrmer" \
-c "[email protected]" \
commit \
--allow-empty \
-m "CI: build README: $changes"
fi
git push -f origin HEAD:${{ github.ref }}-built