更新广州医科大学附属脑科医院精神科挂号与就诊事项 #664
Workflow file for this run
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: Preview PR Build | |
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| paths: | |
| - 'content/**' | |
| - 'static/**' | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 克隆 Next-MtF-wiki 仓库 | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: project-trans/Next-MtF-wiki | |
| fetch-depth: 0 | |
| submodules: true | |
| - name: 更新 source submodule 为 PR 的 ref 版本 | |
| run: | | |
| cd source | |
| git remote set-url origin https://github.com/${{ github.repository }}.git | |
| git fetch origin +refs/pull/${{ github.event.pull_request.number }}/merge | |
| git checkout -qf FETCH_HEAD | |
| cd .. | |
| git add source | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git commit -m "Update source submodule to PR #${{ github.event.pull_request.number }}" || true | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Generate timestamp | |
| id: gen_ts | |
| run: echo "TIMESTAMP=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT | |
| - name: Build project | |
| run: pnpm run build | |
| env: | |
| NEXT_PUBLIC_SITE_URL: '/' | |
| NEXT_PUBLIC_ROBOTS_ALLOW: 'false' | |
| NEXT_PUBLIC_INCLUDE_SITEMAP: 'false' | |
| NEXT_PUBLIC_DEPLOY_TIME: ${{ steps.gen_ts.outputs.TIMESTAMP }} | |
| NEXT_PUBLIC_SERVER_BUILD_INDEX: 'true' | |
| NEXT_PUBLIC_BANNER_TEXT: 'banner-text-disclaimer-preview' | |
| NEXT_PUBLIC_EDIT_LINK_GITHUB_URL: "https://github.com/project-trans/MtF-wiki/tree/master/" | |
| NEXT_PUBLIC_OG_BASE_URL: "https://mtf.wiki/" | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Deploy to Cloudflare Pages | |
| id: deploy | |
| uses: cloudflare/wrangler-action@v3 | |
| with: | |
| apiToken: ${{ secrets.CLOUDFLARE_PAGES_TOKEN }} | |
| accountId: ${{ secrets.CLOUDFLARE_PAGES_ACCOUNT }} | |
| command: pages deploy --project-name=mtfwiki-preview | |
| workingDirectory: apps/wiki | |
| packageManager: pnpm | |
| - name: pr preview action | |
| uses: project-trans/pr-preview-action@v1.0.1 | |
| with: | |
| previewUrl: ${{ steps.deploy.outputs.deployment-url }} | |
| BOT_APP_ID: ${{ vars.BOT_APP_ID }} | |
| BOT_APP_SECRET: ${{ secrets.BOT_APP_SECRET }} | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| REMOVE_PREFIX: content | |
| REMOVE_SUFFIX: .md,_index,index |