added install step to bundle
All checks were successful
Deploy Jekyll site to Pages / build (push) Successful in 4m22s

This commit is contained in:
Florian Weber 2024-11-13 16:07:36 +01:00
parent fb1c319dec
commit 46b6d65429
Signed by: f.weber
GPG Key ID: B162B599E31221C6

View File

@ -46,7 +46,9 @@ jobs:
gem install bundler jekyll webrick gem install bundler jekyll webrick
- name: Build with Jekyll - name: Build with Jekyll
# Outputs to the './_site' directory by default # Outputs to the './_site' directory by default
run: bundle exec jekyll build --destination pages run: |
bundle install && \
bundle exec jekyll build --destination pages
env: env:
JEKYLL_ENV: production JEKYLL_ENV: production
- name: push pages - name: push pages