name: deploying-doc run-name: Deploying doc — ${{ gitea.run_id }} on: workflow_dispatch: schedule: - cron: 45 00 * * 1 pull_request: types: [closed] branches: - main jobs: build-and-deploy: runs-on: ubuntu-latest permissions: contents: read deployments: write steps: - name: 🚚 Checkout uses: actions/checkout@v4 with: fetch-depth: 0 - name: 🔧Install Bun uses: oven-sh/setup-bun@v2 with: bun-version: latest - name: 🔧Install Node.js uses: actions/setup-node@v4 with: node-version: 22 - name: 🔧Install dependencies run: bun install - name: 🔴Build doc run: bun run docs:build - name: 🚀 Deploy to Cloudflare Pages uses: cloudflare/wrangler-action@v3 with: apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }} accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} command: pages deploy ./src/.vuepress/dist --project-name=jingji-spbook --branch=main