Skip to content

updated docs yml

updated docs yml #1

Workflow file for this run

name: Deploy GitHub Pages
on:
push:
branches:
- master
paths:
- 'docs/**'
- '.github/workflows/docs.yml'
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.0'
bundler-cache: true
- name: Install Jekyll
run: |
gem install jekyll bundler
bundle install
- name: Build Jekyll site
run: |
cd docs
bundle exec jekyll build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: docs/_site
branch: gh-pages
clean: true