ci: Use with-connect action for integration tests
#916
Workflow file for this run
This file contains hidden or 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
| on: | |
| push: | |
| branches: | |
| - main | |
| - pkgdown | |
| pull_request: | |
| branches: | |
| - main | |
| - pkgdown | |
| release: | |
| types: [published] | |
| workflow_dispatch: | |
| name: pkgdown | |
| jobs: | |
| pkgdown: | |
| runs-on: ubuntu-latest | |
| env: | |
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: r-lib/actions/setup-pandoc@v2 | |
| - uses: r-lib/actions/setup-r@v2 | |
| with: | |
| use-public-rspm: true | |
| - uses: r-lib/actions/setup-r-dependencies@v2 | |
| with: | |
| extra-packages: any::pkgdown, local::. | |
| needs: website | |
| - name: Build site | |
| uses: nealrichardson/with-connect@dev | |
| with: | |
| # Runs on the default version in the with-connect action | |
| connect-license: ${{ secrets.CONNECT_LICENSE_FILE }} | |
| # TODO: rewrite tests to use CONNECT_* env vars directly | |
| command: | | |
| Rscript -e ' | |
| Sys.setenv( | |
| TEST_1_SERVER=Sys.getenv("CONNECT_SERVER"), | |
| TEST_1_API_KEY=Sys.getenv("CONNECT_API_KEY") | |
| ) | |
| pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)' | |
| - name: Deploy to GitHub pages 🚀 | |
| if: github.event_name != 'pull_request' | |
| uses: JamesIves/[email protected] | |
| with: | |
| clean: false | |
| branch: gh-pages | |
| folder: docs |