GitHub action to automate deployment of shiny applications on https://shinyapps.io.
name: Deploy to shinyapps.io
on:
# run on any push
push:
# run on request (via button in actions menu)
workflow_dispatch:
jobs:
deploy:
name: Deploy to shinyapps
# allow skipping deployment for commits containing '[automated]' or '[no-deploy]' in the commit message
if: "!contains(github.event.head_commit.message, '[automated]') && !contains(github.event.head_commit.message, '[no-deploy]')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: deploy
uses: BDSI-Utwente/shinyapps-deploy-github-action@v1
with:
# account and application name (https://<accountName>.shinyapps.io/<appName>)
appName: your-application-name
accountName: your-account-name
# token and secret obtained from https://www.shinyapps.io/admin/#/tokens
accountToken: ${{ secrets.SHINYAPPS_TOKEN }}
accountSecret: ${{ secrets.SHINYAPPS_SECRET }}
name of the application (typically the last part of the url, e.g. https://<account>.shinyapps.io/<appName>).
account name on shinyapps.io (typically the first part of the url, e.g. https://<account>.shinyapps.io/<appName>).
access token, see https://www.shinyapps.io/admin/#/tokens. Generating a new token/secret pair for this action is recommended, so that you can revoke it without affecting other deployments.
token secret, see https://www.shinyapps.io/admin/#/tokens. Generating a new token/secret pair for this action is recommended, so that you can revoke it without affecting other deployments.
[optional]
Path to app, relative to repository root. Defaults to /
, the repository root.
[optional] comma separated list of files to publish, relative to appDir
. Overrides appFileManifest
. If neither appFiles
or appFileManifest
are provided, all files in appDir will be published.
example: app.R,ui.R,server.R,www
[optional] path to manifest file, relative to appDir
. Overridden by appFiles
. The manifest file should contain a list of files to be deployed, one file per line, relative to appDir
.
[optional] user-friendly title for the application
[optional] level of verbosity of rsconnect::deployApp(). Defaults to normal
, other options are quiet
or verbose
.
This action uses the rocker/shiny-verse:latest docker image as a base. This image includes recent versions of most package commonly used in shiny apps and the tidyverse.
If an renv.lock
file is present in the repository root, renv::restore()
will be called to install the specific versions of packages recorded in the lockfile. If no lock file is found, renv::hydrate()
is used to detect used packages and install any missing packages. Note that in the latter case, the most recent versions of packages will be installed.
We highly recommend using renv to manage dependencies.
Any contributions are appreciated. In particular, we would appreciate help implementing the following;
- support for packrat, other R environment management packages
- support for generic rsconnect servers in addition to shinyapps.io
- support for caching of dependencies
This action was inspired by https://blog.rmhogervorst.nl/blog/2021/02/27/deploy-to-shinyapps-io-from-github-actions/.