Skip to content

Commit

Permalink
chore: publish yard docs via GitHub pages
Browse files Browse the repository at this point in the history
  • Loading branch information
mattkhan committed Sep 25, 2024
1 parent bd99389 commit 293c011
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/yard.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: yard

on:
push:
branches:
- main

permissions:
id-token: write
pages: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- run: bundle exec yard doc
- uses: actions/upload-pages-artifact@v3
with:
path: doc/
- uses: actions/deploy-pages@v4

0 comments on commit 293c011

Please sign in to comment.