Skip to content

Commit

Permalink
Merge pull request #12 from SmithCollege-SDS/quarto
Browse files Browse the repository at this point in the history
transition to Quarto
  • Loading branch information
beanumber authored Apr 20, 2024
2 parents 6264d78 + d54df79 commit f9b5253
Show file tree
Hide file tree
Showing 148 changed files with 506 additions and 59,566 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
^\.github$
1 change: 1 addition & 0 deletions .github/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.html
39 changes: 39 additions & 0 deletions .github/workflows/website.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]

name: website

jobs:
website:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
GS4_KEY: ${{ secrets.GS4_KEY }}
R_KEEP_PKG_SOURCE: yes
steps:
- uses: actions/checkout@v4

- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck
needs: check

- uses: quarto-dev/quarto-actions/setup@v2
- run: |
quarto --version
- name: Publish to GitHub Pages (and render)
uses: quarto-dev/quarto-actions/publish@v2
with:
path: www
target: gh-pages

15 changes: 3 additions & 12 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,43 +1,34 @@
# derivative files
_site/
# other crap
README.html
.DS_Store

# History files
.Rhistory
.Rapp.history

# my stuff
*_original.jpg

# Session Data files
.RData

# Example code in package build process
*-Ex.R

# Output files from R CMD build
/*.tar.gz

# Output files from R CMD check
/*.Rcheck/

# RStudio files
.Rproj.user/

# produced vignettes
vignettes/*.html
vignettes/*.pdf

# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
.httr-oauth

# knitr and R markdown default cache directories
/*_cache/
/cache/

# Temporary files created by R markdown
*.utf8.md
*.knit.md

# Shiny token, see https://shiny.rstudio.com/articles/shinyapps.html
rsconnect/
.secrets
18 changes: 18 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Package: capstone
Title: What the Package Does (One Line, Title Case)
Version: 0.0.0.9000
Authors@R:
person("First", "Last", , "first.last@example.com", role = c("aut", "cre"),
comment = c(ORCID = "YOUR-ORCID-ID"))
Description: What the package does (one paragraph).
License: `use_mit_license()`, `use_gpl3_license()` or friends to pick a
license
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.1
Imports:
dplyr,
googlesheets4,
here,
gargle,
knitr
Binary file removed docs/android-chrome-192x192.png
Binary file not shown.
Binary file removed docs/android-chrome-384x384.png
Binary file not shown.
Binary file removed docs/apple-touch-icon.png
Binary file not shown.
9 changes: 0 additions & 9 deletions docs/browserconfig.xml

This file was deleted.

Loading

0 comments on commit f9b5253

Please sign in to comment.