This repository has been archived by the owner on Jun 5, 2024. It is now read-only.
patch doctor script, and remove some other issues #240
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
on: | |
push: | |
jobs: | |
# Build job | |
build: | |
if: github.actor == 'stuyk' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.ref }} | |
- name: Setup NodeJS | |
uses: actions/setup-node@v3 | |
- name: Install and Build 🔧 | |
run: | | |
npm install | |
npm i --save-dev typedoc@0.23.28 typedoc-plugin-external-resolver@1.0.2 typedoc-plugin-missing-exports@1.0.0 typedoc-plugin-markdown@3.14.0 | |
npm run docs | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: docs | |
- name: Invoke Documentation Build | |
uses: benc-uk/workflow-dispatch@v1 | |
with: | |
workflow: deploy.yml | |
repo: stuyk/athena-docs-latest | |
token: ${{ secrets.DOCS_PAT }} | |
ref: 'main' |