Skip to content

Updated bundle configuration and dependencies #15

Updated bundle configuration and dependencies

Updated bundle configuration and dependencies #15

Workflow file for this run

name: Build and deploy Jekyll site to GitHub Pages
on:
push:
branches:
- master
jobs:
github-pages:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
bundler-cache: true
- name: Install dependencies
run: |
bundle config unset deployment
sudo gem install bundler:2.2.15
bundle install
bundle add kramdown-parser-gfm
bundle install
- uses: helaili/jekyll-action@2.0.1
env:
JEKYLL_PAT: ${{ secrets.JEKYLL_PAT }}