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