We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e7dfb0 commit f4606deCopy full SHA for f4606de
.github/workflows/coverage.yml
@@ -140,15 +140,16 @@ jobs:
140
run: |
141
coverage html
142
coverage xml -o htmlcov/coverage.xml
143
- mv htmlcov coverage
144
- tree coverage
+ mkdir docs
+ mv htmlcov docs/coverage
145
+ tree docs
146
147
- name: Deploy to gh-pages
148
uses: JamesIves/github-pages-deploy-action@4a3abc783e1a24aeb44c16e869ad83caf6b4cc23 # v4.7.4
149
with:
150
git-config-name: cuda-python-bot
151
git-config-email: cuda-python-bot@users.noreply.github.com
- folder: coverage/
152
- target-folder: docs/coverage/
+ folder: docs/
153
+ target-folder: docs/
154
commit-message: "Deploy coverage: ${{ env.COMMIT_HASH }}"
155
clean: false
0 commit comments