增加注释 #37
This file contains hidden or 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: Build and Deploy | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Set up JDK ☕️ | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'corretto' | |
java-version: '21' | |
cache: 'maven' | |
- name: Install Graphviz 🐰 | |
run: | | |
sudo apt update -y -m | |
sudo apt install -y graphviz | |
- name: Improve Document 📝 | |
run: | | |
cd docs | |
sed -i 's/xref:\([^\.]*\).adoc\[[^:]*\]/<<\1>>/g' *.adoc | |
cd .. | |
# 处理 sed 不支持非贪婪模式 | |
# https://stackoverflow.com/a/46719361 | |
# https://stackoverflow.com/a/1103159 | |
- name: Build 🔧 | |
run: | | |
mvn clean package | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
GITHUB_TOKEN: ${{ secrets.CI_TOKEN }} | |
branch: gh-pages # The branch the action should deploy to. | |
folder: target/docs/multipage # The folder the action should deploy. | |
single-commit: true |