From 961b236817419acd1d9983102b7b5362bb16817c Mon Sep 17 00:00:00 2001 From: Shubham Patil Date: Thu, 5 Dec 2024 10:36:46 +0530 Subject: [PATCH] jekyll: append the forward slash at the end of base url path --- pages/jekyll.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/jekyll.yml b/pages/jekyll.yml index f07bc39085..48d76278c5 100644 --- a/pages/jekyll.yml +++ b/pages/jekyll.yml @@ -44,7 +44,7 @@ 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 }}/" env: JEKYLL_ENV: production - name: Upload artifact