Skip to content

Commit

Permalink
ci: Fix commands paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jokelbaf committed Sep 20, 2024
1 parent e446d7e commit b509de1
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,16 @@ jobs:
with:
fetch-depth: 0

- name: Switch directory
run: cd docs

- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm

- name: Install dependencies
run: npm ci
run: cd docs && npm ci

- name: Build docs
run: npm run build
run: cd docs && npm run build

- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
Expand Down

0 comments on commit b509de1

Please sign in to comment.