Skip to content

Commit

Permalink
specify path for build step
Browse files Browse the repository at this point in the history
  • Loading branch information
buckhalt committed Jun 25, 2024
1 parent f0b5107 commit 3b8d7e3
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,16 @@ jobs:
- name: Install dependencies
run: ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }}
- name: Build with Next.js
run: ${{ steps.detect-package-manager.outputs.runner }} next build
run: |
cd apps/documentation
pnpm run build
env:
NEXT_TELEMETRY_DISABLED: 1 # Disable Next.js telemetry if needed

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./out
path: apps/documentation/out

# Deployment job
deploy:
Expand Down

0 comments on commit 3b8d7e3

Please sign in to comment.