Skip to content

Commit 2060ed7

Browse files
committed
Move comments
1 parent b3c9428 commit 2060ed7

File tree

2 files changed

+11
-8
lines changed

2 files changed

+11
-8
lines changed

.github/workflows/build-and-deploy-shinylive-r-app.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,16 @@ jobs:
2828
- name: "Setup R"
2929
uses: r-lib/actions/setup-r@v2
3030

31-
# Install and pin the shinylive R package dependency
31+
# Install dependency and pin the shinylive R package dependency
32+
# to the current version on CRAN
3233
- name: "Setup R dependency for Shinylive App export"
3334
uses: r-lib/actions/setup-r-dependencies@v2
3435
with:
36+
## Install required dependencies from the DESCRIPTION file
37+
## Required for shinylive >= 0.3.0
3538
packages: |
36-
cran::[email protected] ## Pin version to ensure consistency
37-
local::. ## Install required dependencies
38-
## Required for shinylive >= 0.3.0
39+
40+
local::.
3941
4042
# Export the current working directory as the shiny app
4143
# using the pinned version of the Shinylive R package

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -138,15 +138,16 @@ jobs:
138138
- name: "Setup R"
139139
uses: r-lib/actions/setup-r@v2
140140

141-
# Install and pin the shinylive R package dependency
141+
# Install dependency and pin the shinylive R package dependency
142142
# to the current version on CRAN
143143
- name: "Setup R dependency for Shinylive App export"
144144
uses: r-lib/actions/setup-r-dependencies@v2
145145
with:
146+
## Install required dependencies from the DESCRIPTION file
147+
## Required for shinylive >= 0.3.0
146148
packages: |
147-
cran::[email protected] ## Pin version to ensure consistency
148-
local::. ## Install required dependencies
149-
## Required for shinylive >= 0.3.0
149+
150+
local::.
150151
151152
# Export the current working directory as the shiny app
152153
# using the pinned version of the Shinylive R package

0 commit comments

Comments
 (0)