Skip to content

minor: removals and documentation #11

minor: removals and documentation

minor: removals and documentation #11

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.2"
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