From a4f194314a31f87f463ff7e5e4743a3e11cb58a6 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Mon, 16 Feb 2026 20:05:40 +0100 Subject: [PATCH] ci: add manual documentation publish workflow --- .github/workflows/publish-documentation.yml | 52 +++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 .github/workflows/publish-documentation.yml diff --git a/.github/workflows/publish-documentation.yml b/.github/workflows/publish-documentation.yml new file mode 100644 index 000000000..db24453b6 --- /dev/null +++ b/.github/workflows/publish-documentation.yml @@ -0,0 +1,52 @@ +name: Publish Documentation + +on: + workflow_dispatch: + +permissions: + contents: read + +jobs: + publish-documentation: + runs-on: ubuntu-latest + if: github.repository == 'poolifier/poolifier' + + steps: + - name: Checkout + uses: actions/checkout@v6 + with: + token: ${{ secrets.GH_TOKEN_PROTECTED }} + + - name: Setup pnpm + uses: pnpm/action-setup@v4 + + - name: Setup Node.js + uses: actions/setup-node@v6 + with: + node-version: 24.x + cache: 'pnpm' + + - name: Generate documentation + run: | + pnpm install --ignore-scripts --frozen-lockfile + pnpm typedoc + + - name: Commit files + if: github.ref == 'refs/heads/${{ github.event.repository.default_branch }}' + env: + COMMIT_MESSAGE: 'docs: publish documentation' + COMMIT_AUTHOR: Documentation Bot + COMMIT_EMAIL: documentation-bot@users.noreply.github.com + run: | + git config --local user.name "${{ env.COMMIT_AUTHOR }}" + git config --local user.email "${{ env.COMMIT_EMAIL }}" + git pull + git add ./docs + git commit -a -m "${{ env.COMMIT_MESSAGE }}" + + - name: Push changes + if: github.ref == 'refs/heads/${{ github.event.repository.default_branch }}' + uses: CasperWA/push-protected@v2 + with: + token: ${{ secrets.GH_TOKEN_PROTECTED }} + branch: ${{ github.event.repository.default_branch }} -- 2.43.0