From dfa80d903758926dbb410ee44ec77f91c3d0b070 Mon Sep 17 00:00:00 2001 From: Aaron Linder Date: Thu, 26 Sep 2024 02:18:32 -0400 Subject: [PATCH] Update jekyll-gh-pages.yml --- .github/workflows/jekyll-gh-pages.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml index e31d81c..217db83 100644 --- a/.github/workflows/jekyll-gh-pages.yml +++ b/.github/workflows/jekyll-gh-pages.yml @@ -28,13 +28,19 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 + - name: Setup Pages uses: actions/configure-pages@v5 + + # Install Jekyll and dependencies + - name: Install dependencies + run: | + gem install bundler + bundle install + - name: Build with Jekyll - uses: actions/jekyll-build-pages@v1 - with: - source: ./ - destination: ./_site + run: bundle exec jekyll build --source . --destination ./_site + - name: Upload artifact uses: actions/upload-pages-artifact@v3