X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.github%2Fworkflows%2Fgenerate-documentation.yml;h=fcf24a47cfed428fbe8c38ed8b2efe139520dfa4;hb=22cd3adcc323857367ef9c3042fb4b3320a39f50;hp=52dbdbde152c316e8b1563d688d4abca957821d8;hpb=ae782cfa994b2468b49e4279e03c5140e9e309e3;p=poolifier.git diff --git a/.github/workflows/generate-documentation.yml b/.github/workflows/generate-documentation.yml index 52dbdbde..fcf24a47 100644 --- a/.github/workflows/generate-documentation.yml +++ b/.github/workflows/generate-documentation.yml @@ -9,14 +9,14 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup pnpm uses: pnpm/action-setup@v2 with: version: 8 - - name: Setup node + - name: Setup Node.js uses: actions/setup-node@v3 with: node-version: '18.x' @@ -24,7 +24,7 @@ jobs: - name: Generate documentation run: | - pnpm install + pnpm install --ignore-scripts pnpm typedoc - name: Commit files @@ -33,7 +33,7 @@ jobs: git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" git config --local user.name "github-actions[bot]" git add ./docs - git commit -m "chore: generate documentation" -a + git commit -m "docs: generate documentation" -a - name: Push changes if: github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/${{ github.event.repository.default_branch }}'