From a746b6f094baced4a5673a951ebfadf03a41c925 Mon Sep 17 00:00:00 2001 From: Florian Weber Date: Wed, 13 Nov 2024 15:11:32 +0100 Subject: [PATCH] next try with ruby setup --- .gitea/workflows/pages-deploy.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/pages-deploy.yaml b/.gitea/workflows/pages-deploy.yaml index a0e63ff..91c862b 100644 --- a/.gitea/workflows/pages-deploy.yaml +++ b/.gitea/workflows/pages-deploy.yaml @@ -30,7 +30,7 @@ concurrency: jobs: # Build job build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout uses: actions/checkout@v4 @@ -39,12 +39,12 @@ jobs: with: ref: 'pages' path: 'pages' -# - name: Setup Ruby -# uses: ruby/setup-ruby@v1 -# with: -# ruby-version: '3.3.5' # Not needed with a .ruby-version file -# bundler-cache: true # runs 'bundle install' and caches installed gems automatically -# cache-version: 0 # Increment this number if you need to re-download cached gems + - name: Setup Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: '3.3.5' # Not needed with a .ruby-version file + bundler-cache: true # runs 'bundle install' and caches installed gems automatically + cache-version: 0 # Increment this number if you need to re-download cached gems - name: Build with Jekyll # Outputs to the './_site' directory by default run: bundle exec jekyll build --destination pages