Skip to content

Update README.md

Update README.md #10

Workflow file for this run

name: Deploy Just the Docs site from /docs
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1'
- name: Install dependencies
run: |
cd docs
gem install bundler
bundle install
- name: Build the site
run: |
cd docs
bundle exec jekyll build --destination ../_site
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_site
publish_branch: gh-pages