Skip to content

Commit 9e707fc

Browse files
committed
fix(build): Fixed cookiecutter.json file to ensure build success.
1 parent 141482a commit 9e707fc

4 files changed

Lines changed: 20 additions & 4 deletions

File tree

.github/workflows/jekyll-gh-pages.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,13 +48,18 @@ jobs:
4848
steps:
4949
- name: Checkout
5050
uses: actions/checkout@v4
51+
- name: Setup Ruby
52+
uses: ruby/setup-ruby@v1
53+
with:
54+
ruby-version: '3.3' # Recommended for Jekyll 4.4 in 2026
55+
bundler-cache: true # Runs 'bundle install' and caches gems automatically
56+
working-directory: ./docs/jekyll
5157
- name: Setup Pages
5258
uses: actions/configure-pages@v5
5359
- name: Build with Jekyll site in /docs/jekyll
54-
uses: actions/jekyll-build-pages@v1
55-
with:
56-
source: ./docs/jekyll
57-
destination: ./_site
60+
run: bundle exec jekyll build --source ./docs/jekyll --destination ./_site
61+
env:
62+
JEKYLL_ENV: production
5863
- name: Upload artifact
5964
uses: actions/upload-pages-artifact@v3
6065

changelogs/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ Feat 006 (#23)
4949
### 🐛 Fixed
5050

5151
- *(template)* Updates to template cookiecutter.json file.
52+
53+
### 🚀 Added
54+
55+
- *(cla)* CLA documentation and much more. Getting project contribution guidelines setup.
5256
## [0.1.0] - 2025-12-05
5357

5458
### ⚙️ Miscellaneous

changelogs/releases/v0.1.1.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,7 @@ Feat 006 (#23)
4949
### 🐛 Fixed
5050

5151
- *(template)* Updates to template cookiecutter.json file.
52+
53+
### 🚀 Added
54+
55+
- *(cla)* CLA documentation and much more. Getting project contribution guidelines setup.

cookiecutter.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
"author": "Jared Cook",
55
"email": "jcook3701+github@gmail.com",
66
"version": "0.1.0",
7+
"timezone": [
8+
"America/Los_Angeles"
9+
],
710
"description": "Cookiecutter documentation for future project Github Wiki Pages.",
811
"theme": [
912
"just-the-docs/just-the-docs@v0.11.0",

0 commit comments

Comments
 (0)