build-book #3054
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 | |
| pull_request: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| schedule: | |
| # run every day at 11 PM | |
| - cron: "0 23 * * *" | |
| name: build-book | |
| env: | |
| isExtPR: ${{ github.event.pull_request.head.repo.fork == true }} | |
| jobs: | |
| build: | |
| env: | |
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - 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 | |
| - name: Build book | |
| run: Rscript -e 'bookdown::render_book("index.Rmd", quiet = TRUE)' | |
| - name: Upload website artifact | |
| if: ${{ github.ref == 'refs/heads/main' && github.event.pull_request.head.repo.fork == false }} | |
| uses: actions/upload-pages-artifact@v3 | |
| with: | |
| path: "_book" | |
| deploy: | |
| needs: build | |
| if: ${{ github.ref == 'refs/heads/main' && github.event.pull_request.head.repo.fork == false }} | |
| permissions: | |
| pages: write # to deploy to Pages | |
| id-token: write # to verify the deployment originates from an appropriate source | |
| environment: | |
| name: github-pages | |
| url: ${{ steps.deployment.outputs.page_url }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Deploy to GitHub Pages | |
| id: deployment | |
| uses: actions/deploy-pages@v4 |