Skip to content

Commit fdff878

Browse files
Initial commit
0 parents  commit fdff878

74 files changed

Lines changed: 4636 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/publish.yml

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
on:
2+
workflow_dispatch:
3+
push:
4+
branches:
5+
- main
6+
7+
name: Quarto Publish
8+
9+
jobs:
10+
build-deploy:
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: write
14+
steps:
15+
- name: Check out repository
16+
uses: actions/checkout@v4
17+
18+
- name: Set up Quarto
19+
uses: quarto-dev/quarto-actions/setup@v2
20+
21+
- name: Install R
22+
uses: r-lib/actions/setup-r@v2
23+
24+
- name: Session info
25+
run: Rscript -e 'sessionInfo()'
26+
27+
- name: Setup pandoc
28+
uses: r-lib/actions/setup-pandoc@v2 # update
29+
30+
- name: Install libcurl on Linux
31+
if: runner.os == 'Linux'
32+
run: sudo apt-get update -y && sudo apt-get install -y libcurl4-openssl-dev
33+
34+
- name: Install package dependencies
35+
uses: r-lib/actions/setup-r-dependencies@v2 # update
36+
37+
#- name: Install remote packages
38+
# run: |
39+
# Rscript -e 'remotes::install_github("DevPsyLab/petersenlab")'
40+
41+
- name: Render and Publish
42+
uses: quarto-dev/quarto-actions/publish@v2
43+
with:
44+
target: gh-pages
45+
env:
46+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
######################
2+
# OS generated files
3+
######################
4+
.DS_Store
5+
.DS_Store?
6+
._*
7+
.Spotlight-V100
8+
.Trashes
9+
ehthumbs.db
10+
Thumbs.db
11+
12+
# Created by https://www.toptal.com/developers/gitignore/api/osx
13+
# Edit at https://www.toptal.com/developers/gitignore?templates=osx
14+
15+
######################
16+
# OSX
17+
######################
18+
# General
19+
.DS_Store
20+
.AppleDouble
21+
.LSOverride
22+
23+
# Icon must end with two \r
24+
Icon
25+
26+
# Thumbnails
27+
._*
28+
29+
# Files that might appear in the root of a volume
30+
.DocumentRevisions-V100
31+
.fseventsd
32+
.Spotlight-V100
33+
.TemporaryItems
34+
.Trashes
35+
.VolumeIcon.icns
36+
.com.apple.timemachine.donotpresent
37+
38+
# Directories potentially created on remote AFP share
39+
.AppleDB
40+
.AppleDesktop
41+
Network Trash Folder
42+
Temporary Items
43+
.apdisk
44+
45+
# End of https://www.toptal.com/developers/gitignore/api/osx
46+
47+
######################
48+
# R generated files
49+
######################
50+
51+
# History files
52+
.Rhistory
53+
.Rapp.history
54+
55+
# Session Data files
56+
.RData
57+
58+
# User-specific files
59+
.Ruserdata
60+
61+
# Example code in package build process
62+
*-Ex.R
63+
64+
# Output files from R CMD build
65+
/*.tar.gz
66+
67+
# Output files from R CMD check
68+
/*.Rcheck/
69+
70+
# RStudio files
71+
.Rproj.user/
72+
.Rproj.user
73+
74+
# produced vignettes
75+
vignettes/*.html
76+
vignettes/*.pdf
77+
78+
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
79+
.httr-oauth
80+
81+
# knitr and R markdown default cache directories
82+
*_cache/
83+
/*_cache/
84+
/cache/
85+
86+
# Temporary files created by R markdown
87+
*.utf8.md
88+
*.knit.md
89+
90+
# R Environment Variables
91+
.Renviron
92+
93+
# Shiny token, see https://shiny.rstudio.com/articles/shinyapps.html
94+
rsconnect/
95+
rsconnect
96+
97+
_site/
98+
99+
/.quarto/

DESCRIPTION

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Package: placeholder
2+
Title: QuartoWebsite
3+
Version: 1.0.0
4+
Imports:
5+
quarto,
6+
rmarkdown,
7+
blogdown,
8+
remotes,
9+
petersenlab
10+
Remotes:
11+
DevPsyLab/petersenlab

0 commit comments

Comments
 (0)