feat: Suppression dependance stringr #139
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Workflow derived from https://github.com/r-lib/actions/tree/master/examples | |
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help | |
on: | |
pull_request: | |
branches: [main, master] | |
name: deploy-dev | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
env: | |
SHINYAPPS_NAME: ${{ secrets.SHINYAPPS_NAME }} | |
SHINYAPPS_TOKEN: ${{ secrets.SHINYAPPS_TOKEN }} | |
SHINYAPPS_SECRET: ${{ secrets.SHINYAPPS_SECRET }} | |
NAME_OF_APP: shinygouv-demo-dev | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: r-lib/actions/setup-pandoc@v2 | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
use-public-rspm: true | |
r-version: '4.2.0' | |
## Forcing the install of some packages because it | |
## doesn't work on the CI for unidentified reasons) | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
with: | |
extra-packages: rsconnect,remotes,pak,cpp11,hms,progress | |
- name: Deploy package | |
run: | | |
git config --local user.name "$GITHUB_ACTOR" | |
git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com" | |
Rscript "dev/tools/deploy.R" |