Skip to content

Commit

Permalink
fix workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
merlinfuchs committed Feb 3, 2024
1 parent 876df6e commit 8f31c97
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/publish-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/publish-web.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8f31c97

Please sign in to comment.