From 960fdaba9f5e5be392d11ec43514d5f8cb51e977 Mon Sep 17 00:00:00 2001 From: Ufuk Kayserilioglu Date: Mon, 25 Mar 2024 21:58:22 +0200 Subject: [PATCH] Fix build workflow --- .github/workflows/build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9d9293e4..20d0bab9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,8 +9,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: actions/setup-ruby@v1 + - uses: ruby/setup-ruby@v1 with: - ruby-version: 3.2 + ruby-version: '3.2' + bundler-cache: true - run: bundle exec middleman build - run: bundle exec middleman deploy