File: release.yml

package info (click to toggle)
ruby-puppetlabs-spec-helper 8.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 368 kB
  • sloc: ruby: 1,526; sh: 8; makefile: 6
file content (16 lines) | stat: -rw-r--r-- 378 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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"