Update README.md #29
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: Deploy | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
deploy: | |
name: Deploy | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup R | |
uses: r-lib/actions/setup-r@v2 | |
with: | |
r-version: "4.2.2" | |
- name: Setup pandoc (necessary for rmarkdown::render) | |
uses: r-lib/actions/setup-pandoc@v1 | |
- name: Restore R dependencies cache | |
uses: actions/cache@v2 | |
with: | |
path: ${{ env.R_LIBS_USER }} | |
key: R-${{ runner.os }}-${{ hashFiles('DESCRIPTION') }} | |
restore-keys: R-${{ runner.os }}- | |
- name: Install R deploy dependencies | |
run: make install_deploy_dependencies | |
- name: Remove gitignore files from output folder for deploy | |
run: make remove_deploy_gitignores | |
- name: Render CV | |
run: make render_CV | |
- name: Deploy web version to GitHub Pages | |
uses: JamesIves/[email protected] | |
with: | |
branch: github-pages | |
folder: output/github-pages | |
- name: Print CV | |
run: make print_CV | |
# TODO: Maybe use something simpler? | |
- name: Deploy pdf version to GitHub print branch | |
uses: JamesIves/[email protected] | |
with: | |
branch: print | |
folder: output/print |