Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temporarily downgrade rsconnect. #204

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/apps-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,14 @@ jobs:
cache-version: deploy-2-${{ needs.config.outputs.cache-version }}
extra-packages: any::rsconnect

# Temporarily downgrade rsconnect
# (rsconnect 1.0 introduced an issue with deploying from CI
# TODO: Once a proper fix is CRAN, we can remove this step)
- name: Downgrade rsconnect
shell: Rscript {0}
run: |
pak::pkg_install("rsconnect@0.8.29")

# Perform as second step to make sure this version is installed
- name: Install shinycoreci from GitHub
shell: Rscript {0}
Expand Down
1 change: 1 addition & 0 deletions inst/apps/001-hello/app.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
### Keep this line to manually test this shiny application. Do not edit this line; shinycoreci::::is_manual_app


library(shiny)

# Define UI for app that draws a histogram ----
Expand Down