From e1e984bde840058ed7b0c5531554684b884d3f49 Mon Sep 17 00:00:00 2001 From: Pat O'Connor Date: Sat, 22 Mar 2025 16:39:30 +0000 Subject: [PATCH] fix(GUIDEFRAME-51): updated site config Signed-off-by: Pat O'Connor --- .github/workflows/ci.yaml | 5 +++-- .github/workflows/pages.yaml | 4 +++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2798504..2892257 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -18,6 +18,7 @@ jobs: ruby-version: '3.3' # Not needed with a .ruby-version file bundler-cache: true # runs 'bundle install' and caches installed gems automatically cache-version: 0 # Increment this number if you need to re-download cached gems - working-directory: docs - name: Build with Jekyll - run: bundle exec jekyll build \ No newline at end of file + run: | + bundle exec jekyll build + working-directory: docs \ No newline at end of file diff --git a/.github/workflows/pages.yaml b/.github/workflows/pages.yaml index 3541f6e..48a71ae 100644 --- a/.github/workflows/pages.yaml +++ b/.github/workflows/pages.yaml @@ -43,7 +43,9 @@ jobs: uses: actions/configure-pages@v5 - name: Build with Jekyll # Outputs to the './_site' directory by default - run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" + run: | + bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" + working-directory: docs env: JEKYLL_ENV: production - name: Upload artifact