From 251b0e1841821a15fd49fe49880157e2888ad8af Mon Sep 17 00:00:00 2001 From: Sean Parent Date: Wed, 10 Jan 2024 21:13:49 -0800 Subject: [PATCH] Update jekyll.yml --- .github/workflows/jekyll.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index b314b922..609e756e 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -31,10 +31,10 @@ jobs: build: runs-on: ubuntu-latest steps: - - name: Set to docs directory - run: cd ./docs - name: Checkout uses: actions/checkout@v4 + with: + source: ./docs - name: Setup Ruby uses: ruby/setup-ruby@360dc864d5da99d54fcb8e9148c14a84b90d3e88 with: @@ -47,7 +47,7 @@ jobs: - name: Build with Jekyll # Outputs to the './_site' directory by default # run: cd ./docs - run: cd ./docs && bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" + run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" env: JEKYLL_ENV: production - name: Upload artifact