Sha256: 2ec24fda8bab99a476104894f75e6ee1b8b23ff5ff7761266f822cf6ccb6cc60

Contents?: true

Size: 696 Bytes

Versions: 1

Compression:

Stored size: 696 Bytes

Contents

name: "release prep"

on:
  workflow_dispatch:
   inputs:
    target:
      description: "The target for the release. This can be a commit sha or a branch."
      required: false
      default: "main"
    version:
      description: "Version of gem to be released."
      required: true
    ruby-version:
      description: "Ruby version to use."
      required: false
      default: "3.1"

jobs:
  release_prep:
    uses: "puppetlabs/cat-github-actions/.github/workflows/gem_release_prep.yml@main"
    with:
      target: "${{ github.event.inputs.target }}"
      version: "${{ github.event.inputs.version }}"
      ruby-version: "${{ github.event.inputs.ruby-version }}"
    secrets: "inherit"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
puppet_forge-6.0.0 .github/workflows/release_prep.yml