支持AI接口 #161
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 manual with static method | |
| on: | |
| push: | |
| branches: ["master"] | |
| pull_request: | |
| branches: ["master"] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: true | |
| lfs: false | |
| - name: Set Node.js version | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 16 | |
| - name: Set Python version to 3.10.x | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.10" | |
| - name: Use pnpm instead npm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 8 | |
| run_install: false | |
| - name: Prepare environments | |
| run: | | |
| cd GameMakerManualExport | |
| pnpm install | |
| pnpm run init:build | |
| - name: Import translations to manual | |
| run: | | |
| cd GameMakerManualExport | |
| pnpm run static:gendep | |
| pnpm run static:import | |
| pnpm run static:team | |
| - name: Clean temp files | |
| run: | | |
| cd GameMakerManualExport | |
| pnpm run clean:temp | |
| cd .. | |
| - name: Minify all files | |
| run: | | |
| cd GameMakerManualExport | |
| gulp | |
| cd .. | |
| - name: Generate index.html | |
| run: | | |
| cp build/index.htm build/index.html | |
| - name: Add Azure Static Web workflow | |
| run: | | |
| mkdir -p build/.github/workflows/ | |
| cp patch/azure-static-web-apps-static-method.yml build/.github/workflows/ | |
| - name: Deploy to static branch | |
| uses: JamesIves/github-pages-deploy-action@releases/v4 | |
| with: | |
| repository-name: GamemakerChina/manual-static | |
| token: ${{ secrets.ACCESS_TOKEN }} | |
| branch: main | |
| folder: build | |