Skip to content

Commit 7d038a2

Browse files
authored
hopefully fixing docs deploy
1 parent b50ce50 commit 7d038a2

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/deploy-docs.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- main
88
paths:
99
- 'docs/**'
10+
- '.github/workflows/deploy-docs.yml'
1011
jobs:
1112
build:
1213
runs-on: ubuntu-latest
@@ -19,13 +20,14 @@ jobs:
1920
with:
2021
node-version: "20"
2122
# Pick your own package manager and build script
22-
- run: cd docs
23-
- run: npm install
24-
- run: npx nuxt build --preset github_pages
23+
- run: |
24+
cd docs
25+
npm install
26+
npx nuxt build --preset github_pages
2527
- name: Upload artifact
2628
uses: actions/upload-pages-artifact@v3
2729
with:
28-
path: ./.output/public
30+
path: ./docs/.output/public
2931
# Deployment job
3032
deploy:
3133
# Add a dependency to the build job

0 commit comments

Comments
 (0)