Skip to content

feat(hub-common): add content capability and define default collectio… #506

feat(hub-common): add content capability and define default collectio…

feat(hub-common): add content capability and define default collectio… #506

Workflow file for this run

name: Deploy Documentation
# After a push to master, redeploy the docs
on:
push:
branches: [master]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "14.x"
- name: NPM Install
run: npm install
- name: Build Docs
run: npm run docs:build
- name: Deploy GH Pages 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: docs/build/hub.js
CLEAN: false