Skip to content

Commit

Permalink
Try again with modified path
Browse files Browse the repository at this point in the history
Signed-off-by: Henry Brink <[email protected]>
  • Loading branch information
henrybrink committed Apr 23, 2024
1 parent 9f64fbd commit 4835720
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ jobs:
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Install dependencies
run: cd docs && npm ci # or pnpm install / yarn install / bun install
run: npm ci # or pnpm install / yarn install / bun install
- name: Build with VitePress
run: cd docs && npm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
run: npm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/.vitepress/dist
path: .vitepress/dist

# Deployment job
deploy:
Expand Down

0 comments on commit 4835720

Please sign in to comment.