chore: bump actions/setup-node from 4.0.3 to 4.0.4 (#1771) #348
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish documentation | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+* | |
permissions: {} | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate GitHub App token | |
uses: electron/github-app-auth-action@384fd19694fe7b6dcc9a684746c6976ad78228ae # v1.1.1 | |
id: generate-token | |
with: | |
creds: ${{ secrets.GH_APP_CREDS }} | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # tag: v4.1.7 | |
with: | |
token: ${{ steps.generate-token.outputs.token }} | |
- name: Fetch all git branches | |
run: git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/* | |
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # tag: v4.0.4 | |
with: | |
node-version: lts/* | |
- run: yarn install --frozen-lockfile | |
- run: yarn run docs:build | |
- name: Prepare docs | |
uses: malept/github-action-gh-pages@f7952a65c4b763dc84b824a530dc38bd375ac91e # tag: v1.4.0 | |
with: | |
defaultBranch: main | |
docsPath: typedoc | |
noCommit: true | |
showUnderscoreFiles: true | |
versionDocs: true | |
env: | |
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }} | |
- name: Commit docs | |
uses: dsanders11/github-app-commit-action@43de6da2f4d927e997c0784c7a0b61bd19ad6aac # v1.5.0 | |
with: | |
fail-on-no-changes: false | |
message: 'Publish [skip ci]' | |
token: ${{ steps.generate-token.outputs.token }} |