Skip to content

Commit

Permalink
Addressing automation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
larsvilhuber committed Jun 30, 2024
1 parent d0ccc57 commit df970e8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
# This job installs dependencies, builds the book, and pushes it to `gh-pages`
jobs:
deploy-book:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2

Expand All @@ -37,6 +37,9 @@ jobs:
# Let's do the Quarto
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: Install R dependencies
run: |
Rscript presentation/libraries.R
- name: Render Quarto Project
# uses: quarto-dev/quarto-actions/render@v2
# with:
Expand Down
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ title: Self-checking replication packages
author: Lars Vilhuber
logo: assets/ssde-logo.jpeg
copyright: "2023"
exclude_patterns : ["*venv*",".git*",".devcontainer"]
exclude_patterns : ["*venv*",".git*",".devcontainer","presentation"]

# Force re-execution of notebooks on each build.
# See https://jupyterbook.org/content/execute.html
Expand Down

0 comments on commit df970e8

Please sign in to comment.