Skip to content

Ignore pkg directory. #16

Ignore pkg directory.

Ignore pkg directory. #16

Workflow file for this run

name: Github Pages
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: '2.7'
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Install and Build 🔧
run: bundle exec rake doc:gh-pages
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4.3.3
with:
branch: gh-pages # The branch the action should deploy to.
folder: doc/gh-pages # The folder the action should deploy.