-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Insang Song
committed
Jun 30, 2024
1 parent
9ae5e5c
commit 04df2bc
Showing
1 changed file
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -78,6 +78,12 @@ jobs: | |
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) | ||
shell: Rscript {0} | ||
|
||
- name: Download covr report | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: covr-report | ||
path: docs/coverage_report.html | ||
|
||
- name: Deploy to GitHub pages 🚀 | ||
if: github.event_name != 'pull_request' | ||
uses: JamesIves/[email protected] | ||
|
@@ -86,9 +92,4 @@ jobs: | |
branch: gh-pages | ||
folder: docs | ||
|
||
- name: Download covr report | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: covr-report | ||
path: docs | ||
|