Skip to content

Commit

Permalink
doc test
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-roos committed Nov 16, 2023
1 parent 295c500 commit 18d05ae
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Typedoc build and deploy doc to GH pages
on:
push:
branches: ["doc-test"]

workflow_dispatch:


permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install and Build
run: |
npm ci
npm run doc
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: dist/doc

0 comments on commit 18d05ae

Please sign in to comment.