We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b50ce50 commit 7d038a2Copy full SHA for 7d038a2
.github/workflows/deploy-docs.yml
@@ -7,6 +7,7 @@ on:
7
- main
8
paths:
9
- 'docs/**'
10
+ - '.github/workflows/deploy-docs.yml'
11
jobs:
12
build:
13
runs-on: ubuntu-latest
@@ -19,13 +20,14 @@ jobs:
19
20
with:
21
node-version: "20"
22
# Pick your own package manager and build script
- - run: cd docs
23
- - run: npm install
24
- - run: npx nuxt build --preset github_pages
+ - run: |
+ cd docs
25
+ npm install
26
+ npx nuxt build --preset github_pages
27
- name: Upload artifact
28
uses: actions/upload-pages-artifact@v3
29
- path: ./.output/public
30
+ path: ./docs/.output/public
31
# Deployment job
32
deploy:
33
# Add a dependency to the build job
0 commit comments