添加迁移文档 #59
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
on: | |
push: | |
branches: ["dev"] | |
workflow_dispatch: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
publish-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Chekout | |
uses: actions/checkout@v3 | |
- name: Dotnet Setup | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: 8.x | |
- run: dotnet tool update -g docfx | |
- run: dotnet tool install DocFxTocGenerator -g | |
- run: DocFxTocGenerator -d ./zh/ater.web -r -g -s | |
- run: DocFxTocGenerator -d ./zh/ater.dry -r -g -s | |
- run: DocFxTocGenerator -d ./en/ater.web -r -g -s | |
- run: DocFxTocGenerator -d ./en/ater.dry -r -g -s | |
- run: docfx build ./zh/docfx-zh.json | |
- run: docfx build ./en/docfx-en.json | |
- run: rm -rf ./_site/styles/*.map | |
- run: cp -f ./src/index.html ./_site/ | |
- name: Upload GitHub Pages artifact | |
uses: actions/[email protected] | |
- name: Deploy GitHub Pages site | |
uses: actions/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |