workflow: use production environment in Jekyll builds

This commit is contained in:
lifehackerhansol 2023-04-14 22:27:37 -07:00
parent 5f7156aa29
commit e4e2e8a9e0
No known key found for this signature in database
GPG key ID: 80FB184AFC0B3B0E
2 changed files with 2 additions and 2 deletions

View file

@ -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)

View file

@ -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