Skip to content

Commit 89f6f41

Browse files
committed
ci(docfx): Fix artifact upload
1 parent 45c2cf4 commit 89f6f41

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/docdeploy.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ jobs:
2525
- name: Upload site artifact
2626
uses: actions/upload-artifact@v1
2727
with:
28-
name: _site
28+
name: site
29+
path: _site
2930

3031
# Deploy the generated documentation to the gh-pages branch
3132
deploy:
@@ -36,12 +37,12 @@ jobs:
3637
- name: Download site artifact
3738
uses: actions/download-artifact@v1
3839
with:
39-
name: _site
40+
name: site
4041

4142
- name: Deploy
4243
uses: JamesIves/github-pages-deploy-action@releases/v3
4344
env:
4445
ACCESS_TOKEN: ${{ secrets.PersonalAccessToken }}
4546
BRANCH: gh-pages
46-
FOLDER: _site
47+
FOLDER: site
4748
CLEAN: true

0 commit comments

Comments
 (0)