next try with ruby setup
Some checks failed
Deploy Jekyll site to Pages / build (push) Failing after 21s

This commit is contained in:
Florian Weber 2024-11-13 15:11:32 +01:00
parent bd02f1fcaa
commit a746b6f094
Signed by: f.weber
GPG Key ID: B162B599E31221C6

View File

@ -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