X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.github%2Fworkflows%2Fgenerate-documentation.yml;h=a59de95e6974ddbe96b9536e1aaee409578c5db1;hb=726457b4fe5be9c1f7a05b7463faee55c1a8e96a;hp=863aa1e9765dfd23590bbf597c3cd921b3097f43;hpb=022347572b054daf7f718eea07f25c5e54fd6693;p=poolifier.git diff --git a/.github/workflows/generate-documentation.yml b/.github/workflows/generate-documentation.yml index 863aa1e9..a59de95e 100644 --- a/.github/workflows/generate-documentation.yml +++ b/.github/workflows/generate-documentation.yml @@ -18,15 +18,16 @@ jobs: - name: Generate documentation run: | - npm ci - npm run typedoc + corepack enable + pnpm install + pnpm run typedoc - name: Commit files if: "github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/${{ github.event.repository.default_branch }}'" run: | git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" git config --local user.name "github-actions[bot]" - git commit -m "Generate documentation" -a + git commit -m "chore: generate documentation" -a - name: Push changes if: "github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/${{ github.event.repository.default_branch }}'"