Skip to content

Update README.md

Update README.md #31

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.6
bundler-cache: true
- name: Debug Ruby environment
run: gem list
- name: Install dependencies
run: bundle install --jobs 4 --retry 3
- name: Build site
run: |
set -x
bundle exec ruby krems.rb --build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: published
enable_jekyll: false