Skip to content

Commit

Permalink
trying to deploy coverage report to github pages
Browse files Browse the repository at this point in the history
  • Loading branch information
edwardhartnett committed Dec 15, 2024
1 parent b6abc91 commit 49420d7
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/developer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,9 @@ jobs:
mkdir ~/data
cp $GITHUB_WORKSPACE/g2/build/tests/data/* ~/data
- name: Setup Pages
if: matrix.config == 'code_coverage'
uses: actions/configure-pages@v2
- name: upload-test-coverage
if: matrix.config == 'code coverage'
uses: actions/upload-artifact@v4
Expand All @@ -109,3 +112,15 @@ jobs:
path: |
g2/build/*.html
g2/build/*.css
uses: actions/upload-pages-artifact@v1
with:
# Upload the coverage directory from the repository
path: |
path: |
g2/build/*.html
g2/build/*.css
- name: Deploy to GitHub Pages
if: matrix.config == 'docs'
id: deployment
uses: actions/deploy-pages@v1

0 comments on commit 49420d7

Please sign in to comment.