Skip to content

Commit 22bd9fa

Browse files
committed
fix(GUIDEFRAME-51): fixing broken docs + rebase
Signed-off-by: Pat O'Connor <[email protected]>
1 parent ada5ae1 commit 22bd9fa

File tree

4 files changed

+14
-29
lines changed

4 files changed

+14
-29
lines changed

.github/workflows/ci.yaml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/pages.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,25 @@ jobs:
3737
ruby-version: '3.3' # Not needed with a .ruby-version file
3838
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
3939
cache-version: 0 # Increment this number if you need to re-download cached gems
40+
- name: Install dependencies
41+
run: |
42+
bundle install
43+
working-directory: docs
4044
- name: Setup Pages
4145
id: pages
4246
uses: actions/configure-pages@v5
4347
- name: Build with Jekyll
4448
# Outputs to the './_site' directory by default
45-
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
49+
run: |
50+
bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
51+
working-directory: docs
4652
env:
4753
JEKYLL_ENV: production
4854
- name: Upload artifact
4955
# Automatically uploads an artifact from the './_site' directory by default
5056
uses: actions/upload-pages-artifact@v3
57+
with:
58+
path: docs/_site
5159

5260
# Deployment job
5361
deploy:

docs/Gemfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
source 'https://rubygems.org'
22

33
gem "jekyll", "~> 4.4.1" # installed by `gem jekyll`
4-
# gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2
4+
gem "webrick" # required when using Ruby >= 3 and Jekyll <= 4.2.2
55

6-
gem "just-the-docs", "0.10.1" # pinned to the current release
7-
# gem "just-the-docs" # always download the latest release
6+
# gem "just-the-docs", "0.10.1" # pinned to the current release
7+
gem "just-the-docs" # always download the latest release

docs/_config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ title: GuideFrame Docs
22
description: The official documentation for GuideFrame.
33
theme: just-the-docs
44

5-
url: https://chipspeak.github.io/guideframe
5+
url: https://chipspeak.github.io/GuideFrame
66

77
aux_links:
8-
Template Repository: https://github.com/chipspeak/guideframe
8+
Template Repository: https://github.com/chipspeak/GuideFrame

0 commit comments

Comments
 (0)