Skip to content

Commit f3eb4c8

Browse files
committed
Further fixes for docs deploy action
1 parent d78acb8 commit f3eb4c8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/docs-deploy.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,20 @@ jobs:
1111
environment:
1212
name: docs-deploy
1313
steps:
14+
- uses: actions/checkout@v4
1415
- name: Download Artifact
1516
uses: dawidd6/action-download-artifact@v2
1617
with:
1718
workflow: docs-build.yml
1819
name: docs-build
20+
path: docs/_build/html
1921

2022
# Note, the gh-pages deployment requires setting up a SSH deploy key.
2123
# See
2224
# https://github.com/JamesIves/github-pages-deploy-action/tree/dev#using-an-ssh-deploy-key-
2325
- name: Deploy
2426
uses: JamesIves/github-pages-deploy-action@v4
2527
with:
26-
folder: .
28+
folder: docs/_build/html
2729
ssh-key: ${{ secrets.DEPLOY_KEY }}
2830
force: no

0 commit comments

Comments
 (0)