Skip to content

Commit

Permalink
Switch R to RScript in Action call
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasWallrich committed Feb 8, 2024
1 parent c4f98a3 commit 9681fda
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ jobs:

- name: Install Dependencies
run: |
R |
-e "install.packages(c('shiny', 'rsconnect'))"
-e "rsconnect::setAccountInfo(name='lukaswallrich', token=${{secrets.TOKEN}}, secret=${{secrets.SECRET}})"
-e "rsconnect::deployApp(appName = 'fred_explorer', appDir = '.')"
install.packages(c('shiny', 'rsconnect'))
rsconnect::setAccountInfo(name='lukaswallrich', token=${{secrets.TOKEN}}, secret=${{secrets.SECRET}})
rsconnect::deployApp(appName = 'fred_explorer', appDir = '.')
shell: Rscript {0}

env:
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true

Expand Down

0 comments on commit 9681fda

Please sign in to comment.