From a6d002933e521481ade0bb29e92c1b5f7e62d05f Mon Sep 17 00:00:00 2001 From: Miron Pawlik Date: Thu, 1 Aug 2024 15:48:32 +0200 Subject: [PATCH] use different branch temporary --- .github/workflows/docs.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 953ef2bb..c14c5eb7 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -4,7 +4,7 @@ name: Deploy TypeDocs as static page on: # Runs on pushes targeting the default branch push: - branches: ["main"] + branches: ["add-typedoc"] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: @@ -35,8 +35,8 @@ jobs: uses: actions/configure-pages@v3 - name: Install node dependencies run: yarn - - name: Generate TS files - run: yarn typecheck + - name: Build project + run: yarn build - name: Run typedoc run: yarn docs - name: Upload artifact