Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Public site rebuild #590

Merged
merged 2 commits into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/update_book.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:

- name: Clean the site contents except for dev, pull contents of dev/ to main site
run: |
# delete everything except the dev folder
find . ! -name "dev" -maxdepth 1 -delete
# delete everything except the dev and .git folders
find . -maxdepth 1 ! -name ".git" ! -name "dev" ! -name "." | xargs rm -rf
# copy the contents of dev into the root
cp -rf dev/* .

Expand Down
1 change: 0 additions & 1 deletion index.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,3 @@ knitr::include_graphics("img/frontmatter/ds-a-first-intro-cover.jpg")
This work by [Tiffany Timbers](https://www.tiffanytimbers.com/), [Trevor Campbell](https://trevorcampbell.me/),
and [Melissa Lee](https://www.stat.ubc.ca/users/melissa-lee) is licensed under
a [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-nc-sa/4.0/).

Loading