From 5bcbcc1883a12edf0dd0f29bc46e65c2cc2ff65e Mon Sep 17 00:00:00 2001 From: Sam Westrick Date: Wed, 11 Sep 2024 12:41:17 -0400 Subject: [PATCH] Add `bundle install` step to docs/ site publishing workflow Alas, seems like a `bundle install` step is necessary. Let's see... --- .github/workflows/jekyll-gh-pages.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/jekyll-gh-pages.yml b/.github/workflows/jekyll-gh-pages.yml index bc34c18a9..c696d2f73 100644 --- a/.github/workflows/jekyll-gh-pages.yml +++ b/.github/workflows/jekyll-gh-pages.yml @@ -37,6 +37,10 @@ jobs: ruby-version: "3.3" bundler-cache: true # runs 'bundle install' and caches installed gems automatically cache-version: 0 # Increment this number if you need to re-download cached gems + - name: Bundle install + run: bundle install + env: + JEKYLL_ENV: production - name: Setup Pages id: pages uses: actions/configure-pages@v5