Rerender-released-Book #1382
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: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 12 * * *' | |
| name: Rerender-released-Book | |
| jobs: | |
| bookdown: | |
| env: | |
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
| name: Render-Book | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Checkout latest release tag | |
| run: | | |
| LATEST_TAG=$(git describe --tags `git rev-list --tags --max-count=1`) | |
| git checkout $LATEST_TAG | |
| - uses: r-lib/actions/setup-r@v2 | |
| - uses: quarto-dev/quarto-actions/setup@v2 | |
| with: | |
| version: pre-release | |
| - uses: r-lib/actions/setup-pandoc@v2 | |
| - uses: r-lib/actions/setup-tinytex@v2 | |
| - uses: r-lib/actions/setup-r-dependencies@v2 | |
| with: | |
| cache-version: 3 | |
| extra-packages: local::. | |
| - name: Render book | |
| run: Rscript -e 'babelquarto::render_book()' | |
| env: # Set the secret as an input | |
| AIRTABLE_ID: ${{ secrets.AIRTABLE_ID }} | |
| AIRTABLE_API_KEY: ${{ secrets.AIRTABLE_API_KEY }} | |
| ZENODO_TOKEN: ${{ secrets.ZENODO_TOKEN }} | |
| - name: Move English files | |
| run: Rscript -e 'file.copy(from = "_book/rOpenSci-Packages--Development,-Maintenance,-and-Peer-Review.pdf", to = "_book/ropensci-dev-guide.pdf")' -e 'purrr::walk(list.files("images", full.names = TRUE), file.copy, to = "_book/images")' | |
| - name: Move Spanish files | |
| run: Rscript -e 'file.copy(from = "_book/es/rOpenSci-Packages--Development,-Maintenance,-and-Peer-Review.pdf", to = "_book/es/ropensci-dev-guide.pdf")' -e 'purrr::walk(list.files("images", full.names = TRUE), file.copy, to = "_book/es/images")' | |
| - name: Move Portuguese files | |
| run: Rscript -e 'file.copy(from = "_book/pt/Pacotes-rOpenSci--Desenvolvimento,-manutenção-e-revisão-por-pares.pdf", to = "_book/pt/ropensci-dev-guide.pdf")' -e 'purrr::walk(list.files("images", full.names = TRUE), file.copy, to = "_book/pt/images")' | |
| - name: git config | |
| run: | | |
| git config --global user.email "actions@github.com" | |
| git config --global user.name "gh-pages committer" | |
| - name: Commit results | |
| run: | | |
| cp ghpagescname _book/CNAME | |
| cd _book | |
| git init | |
| git add . | |
| git commit -m 'update book' | |
| git push https://${{github.actor}}:${{secrets.GITHUB_TOKEN}}@github.com/${{github.repository}}.git HEAD:gh-pages --force |