X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=.github%2Fworkflows%2Fgenerate-typedoc.yml;h=0966eb272352195d7b3761f52bb46a8d57abed3a;hb=24c3fcb499d1594f698611fd10219de01993071e;hp=bdca615fa36fe4386aa7285b2a4f3ca0cea11a83;hpb=634be0f3ccf030c7651edde1af5caa227a8b7ec6;p=poolifier.git diff --git a/.github/workflows/generate-typedoc.yml b/.github/workflows/generate-typedoc.yml index bdca615f..0966eb27 100644 --- a/.github/workflows/generate-typedoc.yml +++ b/.github/workflows/generate-typedoc.yml @@ -14,10 +14,10 @@ jobs: persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token fetch-depth: 0 # otherwise, you will failed to push refs to dest repo - - name: Set node version to 14 + - name: Set node version to 16 uses: actions/setup-node@v2 with: - node-version: 14 + node-version: 16 - name: Generate TypeDoc run: | @@ -25,14 +25,14 @@ jobs: npm run typedoc - name: Commit files - if: "github.repository == 'pioardi/poolifier' && github.ref == 'refs/heads/master'" + if: "github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/master'" 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 TypeDoc" -a - name: Push changes - if: "github.repository == 'pioardi/poolifier' && github.ref == 'refs/heads/master'" + if: "github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/master'" uses: ad-m/github-push-action@master with: github_token: ${{ secrets.GITHUB_TOKEN }}