diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8eeb539bd..2c67f3ab1 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,7 +23,7 @@ jobs: - name: Run Jekyll # Build the site using Jekyll - run: bundle exec jekyll build + run: JEKYLL_ENV=production bundle exec jekyll build # Copy (or touch) other needed files # .nojekyll: to tell GH Pages to not rebuild (lol) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 112a08124..f212352e2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -22,4 +22,4 @@ jobs: - name: Run Jekyll # Build the site using Jekyll - run: bundle exec jekyll build + run: JEKYLL_ENV=production bundle exec jekyll build