Skip to content

version bump to v2.9.2.rc1 #20

version bump to v2.9.2.rc1

version bump to v2.9.2.rc1 #20

Workflow file for this run

# Simple workflow for deploying static content to GitHub Pages
name: rdocs
on:
workflow_dispatch:
push:
tags:
- v*.*.*
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
- uses: ruby/setup-ruby@dffb23f65a78bba8db45d387d5ea1bbd6be3ef18 # v1.293.0
with:
ruby-version: "4.0"
bundler-cache: true # zizmor: ignore[cache-poisoning]
- run: bundle exec rdoc
- uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
with:
path: 'doc'
- uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5
id: deployment