M src/list/raxos/raxos.md #127
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
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 |