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

Various fixes #5

Merged
merged 5 commits into from
Nov 25, 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
13 changes: 13 additions & 0 deletions .github/workflows/quarto-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,16 @@ jobs:

# See more at https://github.com/quarto-dev/quarto-actions/blob/main/examples/example-03-dependencies.md

- name: Render Quarto Project
uses: quarto-dev/quarto-actions/render@v2
with:
path: .

- name: JamPack
if: github.event_name != 'pull_request'
run: |
npx @divriots/jampack .

# To publish to Netlify, RStudio Connect, or GitHub Pages, uncomment
# the appropriate block below

Expand All @@ -68,9 +78,12 @@ jobs:

# NOTE: If Publishing to GitHub Pages, set the permissions correctly (see top of this yaml)
- name: Publish to GitHub Pages (and render)
if: github.event_name != 'pull_request'
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
path: _site
render: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # this secret is always available for github actions

Expand Down
5 changes: 4 additions & 1 deletion _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ website:
favicon: android-chrome-512x512.png
open-graph: true
twitter-card: true
site-url: https://DHBern.github.io/decoding-inequality-2025/
site-url: https://dhbern.github.io/decoding-inequality-2025/
repo-url: https://github.com/DHBern/decoding-inequality-2025/
issue-url: https://github.com/DHBern/decoding-inequality-2025/issues/new/choose
repo-actions: [edit, issue]
Expand Down Expand Up @@ -49,10 +49,13 @@ format:
link-external-icon: true
link-external-newwindow: true
toc: true
citations-hover: true
crossrefs-hover: true
theme: cosmo
code-copy: true
code-overflow: wrap
css: styles.css
page-layout: full

freeze: true

Expand Down