Skip to content

Commit

Permalink
Feat: Added download script to jekyll
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalwilbrink committed Feb 22, 2024
1 parent ded5d2b commit 2e4e13e
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v4
- name: Install NPM dependencies
run: cd scripts && npm ci
- name: Run Download script
run: cd scripts && npm run download
- name: Setup Ruby
uses: ruby/setup-ruby@ee2113536afb7f793eed4ce60e8d3b26db912da4 # v1.127.0
with:
Expand Down
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ gem 'kramdown'
gem 'rouge'
gem 'jekyll-toc'
gem "webrick", "~> 1.8"
gem 'jekyll-optional-front-matter'
7 changes: 7 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ defaults:
path: "assets/images"
values:
image: true
- scope:
path: ""
values:
layout: "default"
cover: "home"


# Sass settings
sass:
Expand All @@ -62,3 +68,4 @@ plugins:
- jekyll-feed
- jekyll-sitemap
- jekyll-toc
- jekyll-optional-front-matter

0 comments on commit 2e4e13e

Please sign in to comment.