X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=.github%2Fworkflows%2Fgenerate-typedoc.yml;h=f69969a1cb101c4a092f5f21f8103e4c99332af9;hb=12257749724afce52b5e384001deb77a4dd24a59;hp=5fa4498c4e1fc4421afb7e14c949b07bfd6764c7;hpb=4f4ae1cb3c33228a023ea599c2648268d15e6c0f;p=poolifier.git diff --git a/.github/workflows/generate-typedoc.yml b/.github/workflows/generate-typedoc.yml index 5fa4498c..f69969a1 100644 --- a/.github/workflows/generate-typedoc.yml +++ b/.github/workflows/generate-typedoc.yml @@ -9,13 +9,13 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + 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.x' @@ -25,15 +25,15 @@ 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'" + if: "github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/${{ github.event.repository.default_branch }}'" uses: ad-m/github-push-action@master with: github_token: ${{ secrets.GITHUB_TOKEN }} - branch: master + branch: ${{ github.event.repository.default_branch }}