Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
Fixed syntax error in 'Install Dependencies' step
  • Loading branch information
TNRiley authored May 23, 2024
1 parent 89ef925 commit a777a45
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,9 @@ jobs:

- name: Install Dependencies
run: |
R |
-e "install.packages(c('shiny', 'rsconnect'))"
-e "rsconnect::setAccountInfo(name='drmatt', token=${{secrets.TOKEN}}, secret=${{secrets.SECRET}})"
-e "rsconnect::deployApp(appName = 'CiteSource_latest', appDir = './inst/shiny-app/CiteSource')"
R -e "install.packages(c('shiny', 'rsconnect'))"
R -e "rsconnect::setAccountInfo(name='drmatt', token=${{secrets.TOKEN}}, secret=${{secrets.SECRET}})"
R -e "rsconnect::deployApp(appName = 'CiteSource_latest', appDir = './inst/shiny-app/CiteSource')"
env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true

Expand Down

0 comments on commit a777a45

Please sign in to comment.