Skip to content
This repository has been archived by the owner on May 29, 2024. It is now read-only.

fixes doc workflow #14

Merged
merged 1 commit into from
Oct 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/update-documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: docs

- uses: actions/setup-node@v2
with:
Expand All @@ -23,9 +25,9 @@ jobs:
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git rebase main
yarn
yarn typedoc src/index.ts
git checkout docs
git add .
git commit -a -m "Update documentation"

Expand Down
Loading