release #6
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
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" | |
jobs: | |
release: | |
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_release.yml@main" | |
with: | |
target: "${{ github.event.inputs.target }}" | |
secrets: "inherit" |