workflow: use production environment in Jekyll builds
This commit is contained in:
parent
5f7156aa29
commit
e4e2e8a9e0
2 changed files with 2 additions and 2 deletions
2
.github/workflows/publish.yml
vendored
2
.github/workflows/publish.yml
vendored
|
@ -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)
|
||||
|
|
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue