From 8f31c97c31d7da02a5bf9d2b05ae1cb35be0943f Mon Sep 17 00:00:00 2001 From: Merlin Date: Sat, 3 Feb 2024 16:03:38 +0000 Subject: [PATCH] fix workflows --- .github/workflows/publish-docs.yaml | 5 +++-- .github/workflows/publish-web.yaml | 4 +++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-docs.yaml b/.github/workflows/publish-docs.yaml index 5738db3..a8926bb 100644 --- a/.github/workflows/publish-docs.yaml +++ b/.github/workflows/publish-docs.yaml @@ -14,11 +14,12 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Build + - name: Setup Node uses: actions/setup-node@v4 with: node-version: 18 - working-directory: kite-docs + + - name: Build run: | npm install npm run build diff --git a/.github/workflows/publish-web.yaml b/.github/workflows/publish-web.yaml index a1f17b3..3115de9 100644 --- a/.github/workflows/publish-web.yaml +++ b/.github/workflows/publish-web.yaml @@ -16,10 +16,12 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Build + - name: Setup Node uses: actions/setup-node@v4 with: node-version: 18 + + - name: Build working-directory: kite-web run: | npm install