modifying ra,dec for connor+ #58
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 site | |
| jobs: | |
| render: | |
| name: Render site | |
| runs-on: macOS-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: r-lib/actions/setup-r@v2 | |
| - uses: r-lib/actions/setup-pandoc@v2 | |
| - name: Install rmarkdown | |
| run: Rscript -e 'install.packages("rmarkdown")' | |
| - name: Install tidyverse | |
| run: Rscript -e 'install.packages("tidyverse")' | |
| - name: Install DT | |
| run: Rscript -e 'install.packages("DT")' | |
| - name: Render README | |
| run: Rscript -e 'rmarkdown::render("index.Rmd")' | |
| - name: Commit results | |
| run: | | |
| git commit index.html -m 'Re-build index.html' || echo "No changes to commit" | |
| git push origin || echo "No changes to commit" |