Skip to content

Update README.md

Update README.md #2

Workflow file for this run

name: Build and Publish Jazzy Documentation
on:
push:
branches: [main]
workflow_dispatch:
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install Jazzy
run: gem install jazzy
- name: Generate Jazzy documentation
run: jazzy
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs