-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto-generate and publish code docs (#148)
- Loading branch information
1 parent
2498560
commit 6e0dd7f
Showing
4 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
name: Deploy API docs to GitHub Pages | ||
on: | ||
push: | ||
branches: ['main'] | ||
# paths: | ||
# - '.github/workflows/pages.yml' | ||
# - '.yardopts' | ||
# - 'lib/**' | ||
# - 'Gemfile' | ||
# - '**.txt' | ||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
pages: write | ||
id-token: write | ||
|
||
# Allow one concurrent deployment | ||
concurrency: | ||
group: 'pages' | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
deploy_yard: | ||
# the deploy environment (not to be confused with env) | ||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
runs-on: ubuntu-latest | ||
name: Build and deploy YARD | ||
steps: | ||
- uses: kachick/[email protected] | ||
id: deployment | ||
with: | ||
# default `doc` as default of `.yardopts` | ||
# output-dir: 'doc' | ||
# default version is 3.2 | ||
ruby-version: '3.2' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,3 +41,5 @@ node_modules | |
!/app/assets/builds/application.css | ||
|
||
/coverage | ||
|
||
.yardoc/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters