X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=.github%2Fworkflows%2Fgenerate-typedoc.yml;h=4ad20a798cac6917560ade4332035c70d4e711c5;hb=200aca02adb41311beb654c24970049a50df5474;hp=0966eb272352195d7b3761f52bb46a8d57abed3a;hpb=7e0d447f83e76296d95fc71dcdcfbe6fa2fe1f26;p=poolifier.git diff --git a/.github/workflows/generate-typedoc.yml b/.github/workflows/generate-typedoc.yml index 0966eb27..4ad20a79 100644 --- a/.github/workflows/generate-typedoc.yml +++ b/.github/workflows/generate-typedoc.yml @@ -9,15 +9,15 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 - with: - 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 + uses: actions/checkout@v3 + # with: + # 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 16 - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: 16 + node-version: '16.x' - name: Generate TypeDoc run: | @@ -25,15 +25,18 @@ jobs: npm run typedoc - name: Commit files - if: "github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/master'" + 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 TypeDoc" -a - name: Push changes - if: "github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/master'" - uses: ad-m/github-push-action@master + if: "github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/${{ github.event.repository.default_branch }}'" + # uses: ad-m/github-push-action@master + uses: CasperWA/push-protected@v2 with: - github_token: ${{ secrets.GITHUB_TOKEN }} - branch: master + # github_token: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.GH_TOKEN_PROTECTED }} + branch: ${{ github.event.repository.default_branch }} + unprotect_reviews: true