From 733eb15aa3af65768974526224c705867e60b4eb Mon Sep 17 00:00:00 2001 From: Laurent Pugin Date: Fri, 18 Oct 2024 16:54:24 +0200 Subject: [PATCH] Drop useless action --- .github/workflows/build.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b179d06..f2176c5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -65,7 +65,9 @@ jobs: restore-keys: | ${{ runner.os }}-gems-v3 - # Tune the jekyll action - - uses: lemonarc/jekyll-action@1.0.0 - with: - build_dir: ${{ env.BUILD_PATH }} + - name: "Build the site + working-directory: ${{ env.BUILD_PATH }} + run: | + bundle config path vendor/bundle + bundle install + bundle exec jekyll build