4ad20a798cac6917560ade4332035c70d4e711c5
[poolifier.git] / .github / workflows / generate-typedoc.yml
1 name: Generate TypeDoc
2
3 on:
4 workflow_dispatch:
5
6 jobs:
7 generate:
8 runs-on: ubuntu-latest
9
10 steps:
11 - name: Checkout
12 uses: actions/checkout@v3
13
14 # with:
15 # persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
16 # fetch-depth: 0 # otherwise, you will failed to push refs to dest repo
17 - name: Set node version to 16
18 uses: actions/setup-node@v3
19 with:
20 node-version: '16.x'
21
22 - name: Generate TypeDoc
23 run: |
24 npm ci
25 npm run typedoc
26
27 - name: Commit files
28 if: "github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/${{ github.event.repository.default_branch }}'"
29 run: |
30 git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
31 git config --local user.name "github-actions[bot]"
32 git commit -m "Generate TypeDoc" -a
33
34 - name: Push changes
35 if: "github.repository == 'poolifier/poolifier' && github.ref == 'refs/heads/${{ github.event.repository.default_branch }}'"
36 # uses: ad-m/github-push-action@master
37 uses: CasperWA/push-protected@v2
38 with:
39 # github_token: ${{ secrets.GITHUB_TOKEN }}
40 token: ${{ secrets.GH_TOKEN_PROTECTED }}
41 branch: ${{ github.event.repository.default_branch }}
42 unprotect_reviews: true