Skip to content

Use Bundler platforms for wdm and sync Gemfile.lock for CI #5

Use Bundler platforms for wdm and sync Gemfile.lock for CI

Use Bundler platforms for wdm and sync Gemfile.lock for CI #5

Workflow file for this run

name: Deploy Jekyll site to Pages
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.1"
bundler-cache: true
- run: bundle config path vendor/bundle || true
- run: bundle install --jobs 4 --retry 3
- run: bundle exec jekyll build
- uses: actions/upload-pages-artifact@v3
with:
path: ./_site
deploy:
needs: build
permissions:
pages: write
id-token: write
runs-on: ubuntu-latest
steps:
- uses: actions/configure-pages@v3
- uses: actions/deploy-pages@v4