适配pnpm版本 #123
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: Build manual with plugged method (Linux) | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Prepare submodules | |
run: | | |
git submodule update --init --remote GMS2-Robohelp-en/ | |
git submodule update --init --remote GameMakerManualExport/ | |
- 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 plugged:gendep | |
pnpm run plugged:import | |
pnpm run plugged:team | |
- name: Clean temp files | |
run: | | |
cd GameMakerManualExport | |
pnpm run clean:temp | |
cd .. | |
- name: Copy CNAME files | |
run: | | |
cp patch/CNAME.plugged CNAME | |
- name: Deploy to plugged branch | |
uses: JamesIves/github-pages-deploy-action@releases/v4 | |
with: | |
repository-name: GamemakerChina/manual-plugged | |
token: ${{ secrets.ACCESS_TOKEN }} | |
branch: main | |
folder: build |