docs(plugin configuration): add metadata to plugin configuration to b… #191
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: Build and deploy docs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3.5.3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: lts/* | |
- name: Install and Build | |
run: | | |
npm install | |
npm run build:docs | |
- name: Deploy | |
uses: JamesIves/github-pages-deploy-action@v4.4.2 | |
with: | |
branch: gh-pages | |
folder: public |