Merge pull request #1180 from geocompx/copilot/trigger-github-workflo… #1292
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 | |
| name: Render | |
| jobs: | |
| bookdown: | |
| name: Render-Book | |
| runs-on: ubuntu-latest | |
| container: ghcr.io/geocompx/suggests:latest | |
| env: | |
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Render Book | |
| run: | | |
| #Rscript -e 'install.packages("remotes")' | |
| #Rscript -e 'remotes::install_github("geocompx/geocompkg", dependencies = TRUE, force = TRUE)' | |
| #Rscript -e 'install.packages("geocompkg", repos = c("https://geocompr.r-universe.dev", "https://cloud.r-project.org"), dependencies = TRUE, force = TRUE)' | |
| Rscript -e 'bookdown::render_book("index.Rmd")' | |
| cp -fvr _redirects _book/ | |
| cp -fvr .htaccess _book/ | |
| #cp -fvr es.html fr.html solutions.html htaccess.txt _book/ | |
| - name: Deploy | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./_book | |
| publish_branch: gh-pages | |
| commit_message: 'Deploy commit: ${{ github.event.head_commit.message }}' |