fix: bump auth to v2.63.0 (#998) #332
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: Docs | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
docs: | |
name: Publish docs / OS ${{ matrix.os }} / Node ${{ matrix.node }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node: ['20'] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: | | |
npm ci | |
npm run docs | |
npm run docs:json | |
- name: Publish | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: docs | |
force_orphan: true | |
commit_message: 'docs: update' |