Merge pull request #589 from UBC-DSCI/main #5
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
name: Rebuild and deploy book to gh-pages branch | |
on: | |
push: | |
branches: | |
- production | |
paths: | |
- 'index.Rmd' | |
- '_bookdown.yml' | |
- '_output.yml' | |
- 'source/*.Rmd' | |
- 'source/*.bib' | |
- 'source/*.css' | |
- 'data/**' | |
- 'img/**' | |
- 'build_html.sh' | |
jobs: | |
deploy-book: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- name: checkout gh-pages | |
uses: actions/checkout@v2 | |
with: | |
ref: 'gh-pages' | |
- name: Clean the site contents except for dev, pull contents of dev/ to main site | |
run: | | |
# delete everything except the dev folder | |
find . ! -name "dev" -maxdepth 1 -delete | |
# copy the contents of dev into the root | |
cp -rf dev/* . | |
# Push updated website, clean out old commits | |
- name: Update website | |
uses: peaceiris/actions-gh-pages@v3.8.0 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
force_orphan: true | |
cname: datasciencebook.ca |