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.
1 parent 6a1816b commit ec38e42Copy full SHA for ec38e42
.github/workflows/pages.yml
@@ -36,14 +36,12 @@ jobs:
36
run: pnpm install --frozen-lockfile
37
- name: Build
38
run: pnpm run build
39
- - name: Export
40
- run: pnpm run export
41
- env:
42
- BASE_PATH: /tinymlhack2024-docs
43
- name: Prepare for Deployment
44
run: |
45
mkdir -p deployment
46
- cp -r out/* deployment/
+ cp -r .next/standalone/* deployment/
+ cp -r .next/static deployment/.next/
+ cp -r public/* deployment/
47
- uses: actions/upload-pages-artifact@v3
48
with:
49
path: ./deployment
0 commit comments