This repository has been archived by the owner on Apr 18, 2024. It is now read-only.
Fix import settings post to use Attribute Type (#308) #89
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 Documentation to Github Page | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: write | |
jobs: | |
build-and-deploy-documentation: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16.13 | |
- name: Install dependency | |
run: npm install -g @compodoc/compodoc | |
- name: Generate docs | |
run: compodoc -p tsconfig.doc.json | |
- name: Deploy to github page | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: documentation |