From 46b6d6542997d66deb989199eb04d335a62e1a13 Mon Sep 17 00:00:00 2001 From: Florian Weber Date: Wed, 13 Nov 2024 16:07:36 +0100 Subject: [PATCH] added install step to bundle --- .gitea/workflows/pages-deploy.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/pages-deploy.yaml b/.gitea/workflows/pages-deploy.yaml index d8e3e0f..beebe72 100644 --- a/.gitea/workflows/pages-deploy.yaml +++ b/.gitea/workflows/pages-deploy.yaml @@ -46,7 +46,9 @@ jobs: gem install bundler jekyll webrick - name: Build with Jekyll # Outputs to the './_site' directory by default - run: bundle exec jekyll build --destination pages + run: | + bundle install && \ + bundle exec jekyll build --destination pages env: JEKYLL_ENV: production - name: push pages