fix typos 18S tables #34
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
on: | |
push: | |
branches: | |
- main | |
- master | |
jobs: | |
notebook: | |
name: render-notebook | |
runs-on: ubuntu-latest | |
steps: | |
# - name: Install gdal | |
# run: sudo apt-get install -y libgdal-dev libudunits2-dev | |
- uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: libgdal-dev libudunits2-dev | |
- uses: actions/checkout@v3 | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
r-version: 4 | |
- uses: r-lib/actions/setup-r-dependencies@v2 | |
- uses: r-lib/actions/setup-pandoc@v2 | |
- name: Render notebook | |
run: Rscript -e 'rmarkdown::render("notebooks/index.Rmd", output_dir = "../docs")' | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ../docs |