Skip to content

Commit b5eac4a

Browse files
authored
Dokken/fix publish (#27)
Try fixing publish dir
1 parent 8b15548 commit b5eac4a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build_docs.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,16 @@ jobs:
2626
run: make doc
2727

2828
- name: Copy Dockerfile into gh-pages
29-
run: cp Dockerfile ${PUBLISH_DIR}
29+
run: cp Dockerfile ${PUBLISH_DIR}/
3030

3131
- name: Add coverage report to github pages
3232
run: |
3333
python -m pytest --cov=mypackage test
3434
python -m coverage html
35-
cp -r htmlcov ${PUBLISH_DIR}
35+
cp -r htmlcov ${PUBLISH_DIR}/
36+
37+
- name: Print publish dir
38+
run: ls ${PUBLISH_DIR}
3639

3740
- name: Deploy
3841
uses: peaceiris/actions-gh-pages@v3

0 commit comments

Comments
 (0)