From 7919396075b595c48475572b7dcd0a5e593d0cf3 Mon Sep 17 00:00:00 2001 From: Christopher Atkins Date: Sat, 13 Jan 2024 06:42:46 -0500 Subject: [PATCH] fix path issues --- .github/workflows/documentation.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/documentation.yaml b/.github/workflows/documentation.yaml index 477e229..5c4879a 100644 --- a/.github/workflows/documentation.yaml +++ b/.github/workflows/documentation.yaml @@ -31,16 +31,19 @@ jobs: uses: ruby/setup-ruby@v1.98.0 with: ruby-version: '3.1' - bundler-cache: true - name: Setup Pages uses: actions/configure-pages@v4 - name: Build with Jekyll - run: bundle exec jekyll build --source ./docs" + with: + working-directory: docs + run: bundle exec jekyll build env: JEKYLL_ENV: production - name: Upload artifact uses: actions/upload-pages-artifact@v3 + with: + path: docs/_site/ deploy: runs-on: ubuntu-latest