Skip to content

Commit

Permalink
Add a workflow to publish reference docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ezzatron committed May 3, 2024
1 parent 8446bca commit b0a19dc
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/publish-reference.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Publish reference

on:
push:
branches:
- main

jobs:
publish:
name: Publish reference
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "20"

- name: Install dependencies
run: make link-dependencies

- name: Make
run: make artifacts/docs/typedoc

- name: Publish reference
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: artifacts/docs/typedoc

0 comments on commit b0a19dc

Please sign in to comment.