-
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.
Fix deployment action to ShinyApps (#63)
* Change triggers for running R CMD checks Run checks only on pushes (i.e. when a branch is merged--this necessarily creates a push) to the master and development branches. Enable workflow dispatching for any branch. * Don't autorun on push to development * Set up ShinyApps io deployment action (#60) Deploys only the master branch. Consider a development deployment in the future * Install libgit2-dev in action workflow * Fix typo in action * Add account name attempt * Update renv dependencies for action * Remove browser call * Force updates to Shiny site * Use golem fix for deploying to shinyapps.io
- Loading branch information
1 parent
e6635c0
commit ae0615a
Showing
7 changed files
with
24 additions
and
9 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 |
---|---|---|
|
@@ -10,3 +10,5 @@ $run_dev.* | |
^README\.Rmd$ | ||
^LICENSE\.md$ | ||
^\.github$ | ||
^app\.R$ | ||
^rsconnect$ |
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
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 |
---|---|---|
|
@@ -19,6 +19,7 @@ Imports: | |
glue, | ||
golem (>= 0.4.0), | ||
magrittr, | ||
pkgload, | ||
purrr, | ||
rhandsontable, | ||
rlang, | ||
|
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Disabling shiny autoload | ||
|
||
# See ?shiny::loadSupport for more information |
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Launch the ShinyApp (Do not remove this comment) | ||
# To deploy, run: rsconnect::deployApp() | ||
# Or use the blue button on top of this file | ||
|
||
pkgload::load_all(export_all = FALSE,helpers = FALSE,attach_testthat = FALSE) | ||
options( "golem.app.prod" = TRUE) | ||
ordinalsimr::run_app() # add parameters here (if any) |
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