diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index e19eb97..7b03021 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -24,11 +24,16 @@ jobs: - name: Setup Pages uses: actions/configure-pages@v5 - - name: Build with Jekyll - uses: actions/jekyll-build-pages@v1 + - name: Setup Ruby + uses: ruby/setup-ruby@v1 with: - source: ./ - destination: ./_site + ruby-version: "3.3" + bundler-cache: true + + - name: Build with Jekyll + run: bundle exec jekyll build --destination ./_site + env: + JEKYLL_ENV: production - name: Upload artifact uses: actions/upload-pages-artifact@v3