Skip to content

modifying ra,dec for connor+ #58

modifying ra,dec for connor+

modifying ra,dec for connor+ #58

Workflow file for this run

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"