Skip to content

Commit f4606de

Browse files
committed
Try a different way to specify directories
1 parent 7e7dfb0 commit f4606de

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/coverage.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,15 +140,16 @@ jobs:
140140
run: |
141141
coverage html
142142
coverage xml -o htmlcov/coverage.xml
143-
mv htmlcov coverage
144-
tree coverage
143+
mkdir docs
144+
mv htmlcov docs/coverage
145+
tree docs
145146
146147
- name: Deploy to gh-pages
147148
uses: JamesIves/github-pages-deploy-action@4a3abc783e1a24aeb44c16e869ad83caf6b4cc23 # v4.7.4
148149
with:
149150
git-config-name: cuda-python-bot
150151
git-config-email: cuda-python-bot@users.noreply.github.com
151-
folder: coverage/
152-
target-folder: docs/coverage/
152+
folder: docs/
153+
target-folder: docs/
153154
commit-message: "Deploy coverage: ${{ env.COMMIT_HASH }}"
154155
clean: false

0 commit comments

Comments
 (0)