Skip to content

Version 3.8.0

Version 3.8.0 #31

Workflow file for this run

name: Publish Documentation
on:
release:
types: [ published ]
# Allows running this workflow manually from the Actions tab
workflow_dispatch:
jobs:
documentation:
name: Publish Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.1"
bundler-cache: true
- name: Analyse the code with Rubocop
run: |
bundle exec rake doc
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/_build