Skip to content

release

release #3

Workflow file for this run

name: "release"
on:
workflow_dispatch:
inputs:
target:
description: "The target for the release. This can be a commit sha or a branch."
required: false
default: "main"
ruby-version:
description: "Ruby version to use."
required: false
default: "3.1"
jobs:
release:
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_release.yml@main"
with:
target: "${{ github.event.inputs.target }}"
ruby-version: "${{ github.event.inputs.ruby-version }}"
secrets: "inherit"