Skip to content

Commit 4237aef

Browse files
committed
Test deployment failure
1 parent cd26bfc commit 4237aef

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/workflow.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868

6969
- name: Deploy to shinyapps.io
7070
# Continuous deployment only for pushes to the main / master branch
71-
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
71+
# if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master'
7272
env:
7373
SHINYAPPS_ACCOUNT: ${{ secrets.SHINYAPPS_ACCOUNT }}
7474
SHINYAPPS_TOKEN: ${{ secrets.SHINYAPPS_TOKEN }}

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ Imports:
88
config (>= 0.3.2),
99
golem (>= 0.4.1),
1010
graphics,
11-
pkgload,
1211
shiny (>= 1.8.1.1)
1312
Encoding: UTF-8
1413
LazyData: true
@@ -17,6 +16,7 @@ URL: https://github.com/guidomaggioorg/shinyfaithful
1716
BugReports: https://github.com/guidomaggioorg/shinyfaithful/issues
1817
Suggests:
1918
rsconnect,
19+
pkgload,
2020
spelling,
2121
testthat (>= 3.0.0)
2222
Config/testthat/edition: 3

deploy/deploy-shinyapps.R

+2-4
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,10 @@ app_files = c(
1313
"DESCRIPTION",
1414
"NAMESPACE",
1515
"R/",
16-
"inst/",
17-
"renv.lock",
18-
".rscignore"
16+
"inst/"
1917
)
2018
# options(rsconnect.packrat = TRUE)
2119
rsconnect::deployApp(
2220
account = "gmaggio", # not necessary
23-
appName = "FaithfulPlots", appFiles = app_files, forceUpdate = TRUE
21+
appName = "FaithfulPlotsTest", appFiles = app_files, forceUpdate = TRUE
2422
)

0 commit comments

Comments
 (0)