Skip to content

Commit 8624235

Browse files
authored
Merge pull request #36 from chipspeak/GUIDEFRAME-51
fix(GUIDEFRAME-51): updated site config
2 parents 2cba996 + e1e984b commit 8624235

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
ruby-version: '3.3' # Not needed with a .ruby-version file
1919
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
2020
cache-version: 0 # Increment this number if you need to re-download cached gems
21-
working-directory: docs
2221
- name: Build with Jekyll
23-
run: bundle exec jekyll build
22+
run: |
23+
bundle exec jekyll build
24+
working-directory: docs

.github/workflows/pages.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ jobs:
4343
uses: actions/configure-pages@v5
4444
- name: Build with Jekyll
4545
# Outputs to the './_site' directory by default
46-
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
46+
run: |
47+
bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
48+
working-directory: docs
4749
env:
4850
JEKYLL_ENV: production
4951
- name: Upload artifact

0 commit comments

Comments
 (0)