We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9d7a054 + 3c199be commit c547dc9Copy full SHA for c547dc9
.github/workflows/nextjs.yml
@@ -78,12 +78,14 @@ jobs:
78
${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-
79
- name: Install dependencies
80
run: ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }}
81
- - name: Build with Next.js
82
- run: ${{ steps.detect-package-manager.outputs.runner }} next build
+ - name: Build and Export with Next.js
+ run: |
83
+ ${{ steps.detect-package-manager.outputs.runner }} next build
84
+
85
- name: Upload artifact
86
uses: actions/upload-pages-artifact@v3
87
with:
- path: ./out
88
+ path: ./web/out
89
90
# Deployment job
91
deploy:
0 commit comments