From 023d6b1c3f6a5de18a89c86071d6726438fe2ade Mon Sep 17 00:00:00 2001 From: Marie Katrine Ekeberg Date: Mon, 29 Jul 2024 17:21:00 +0200 Subject: [PATCH] [SKIP] Add missing dependency installation to workflow --- .github/workflows/jekyll.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml index b7ee9a6..8f45372 100644 --- a/.github/workflows/jekyll.yml +++ b/.github/workflows/jekyll.yml @@ -42,7 +42,9 @@ jobs: id: pages uses: actions/configure-pages@v5 - name: Build with Jekyll - run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" + run: | + bundle install + bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" env: JEKYLL_ENV: production - name: Upload artifact