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 68953da commit 75ef674Copy full SHA for 75ef674
.github/workflows/build_publish.yaml
@@ -40,18 +40,17 @@ jobs:
40
with:
41
path: |
42
dist
43
- .nuxt
44
- key: ${{ runner.os }}-nuxt-build-${{ hashFiles('dist') }}
+ key: ${{ runner.os }}-build-${{ hashFiles('dist') }}
45
restore-keys: |
46
- ${{ runner.os }}-nuxt-build-
+ ${{ runner.os }}-build-
47
- name: Install dependencies
48
run: npm ci
49
- name: Static HTML export with Nuxt
50
run: npm run docs:build
51
- name: Upload artifact
52
uses: actions/upload-pages-artifact@v1
53
54
- path: ./dist
+ path: ./docs/.vitepress/dist
55
56
# Deployment job
57
deploy:
0 commit comments