From 395ceb9e4465ce6ea2245e424d22f8850107acc6 Mon Sep 17 00:00:00 2001 From: Harimohan Rajamohanan Date: Thu, 18 Jan 2024 08:48:47 +0530 Subject: [PATCH] Build action issue fixed --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a7b5e9b..948e733 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,9 @@ jobs: # Build job build: runs-on: ubuntu-latest + defaults: + run: + working-directory: docs steps: - name: Checkout uses: actions/checkout@v3 @@ -18,5 +21,6 @@ jobs: ruby-version: '3.1' # 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: '${{ github.workspace }}/docs' - name: Build with Jekyll run: bundle exec jekyll build