Skip to content

chore(deps): bump eslint from 8.52.0 to 9.11.1 #169

chore(deps): bump eslint from 8.52.0 to 9.11.1

chore(deps): bump eslint from 8.52.0 to 9.11.1 #169

Workflow file for this run

name: Build & deploy documentation
on:
push:
branches:
- main
defaults:
run:
working-directory: gems/yrb-actioncable
jobs:
build:
runs-on: ubuntu-latest
name: Update gh-pages with docs
steps:
- name: Checkout this repo
uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.1"
- name: Install required gem dependencies
run: gem install yard github-markup redcarpet --no-document
- name: Build YARD Ruby Documentation
run: yardoc --output-dir ./doc
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./gems/yrb-actioncable/doc
publish_branch: gh-pages