You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
jobs:
shiny-deploy:
runs-on: ubuntu-lateststeps:
- uses: actions/checkout@v2
- name: Set up Quartouses: quarto-dev/quarto-actions/setup@v2with:
# To install LaTeX to build PDF booktinytex: true# uncomment below and fill to pin a version# version: 0.9.600
- name: Set up R Environmentuses: r-lib/actions/setup-renv@v2 # Installs packages from renv lockfilewith:
cache-version: 1
- name: Install {rsconnect} and {quarto}run: | renv::install("rsconnect") renv::install("quarto")shell: Rscript {0}
- name: Authorize and deploy appenv:
APPNAME: your-app-nameACCOUNT: your-account-nameSERVER: shinyapps.iorun: | rsconnect::setAccountInfo("${{ secrets.RSCONNECT_USER }}", "${{ secrets.RSCONNECT_TOKEN }}", "${{ secrets.RSCONNECT_SECRET }}") rsconnect::deployApp(appName = "${{ env.APPNAME }}", account = "${{ env.ACCOUNT }}", server = "${{ env.SERVER }}", quarto = quarto::quarto_path())shell: Rscript {0}
However, the action must at least install R, {rsconnect}, {quarto}, and have shinyapps.io account.
Do you think is it a good idea to may be include here in the examples/ section of this repo and write some tutorial ?
If so, I might able to help you with that.
Thankyou
The text was updated successfully, but these errors were encountered:
Hi, I've an Idea.
I've create GHA workflow that deploy Shiny app using Quarto using
{rsconnect}
to shinyapps.io seamlessly, as inspired from this shiny-deploy actionHere are the example app:
However, the action must at least install R,
{rsconnect}
,{quarto}
, and haveshinyapps.io
account.Do you think is it a good idea to may be include here in the
examples/
section of this repo and write some tutorial ?If so, I might able to help you with that.
Thankyou
The text was updated successfully, but these errors were encountered: