We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bf22956 + 3aaf172 commit 10a53d5Copy full SHA for 10a53d5
.github/workflows/release.yml
@@ -0,0 +1,9 @@
1
+name: "Publish module"
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ release:
8
+ uses: "puppetlabs/cat-github-actions/.github/workflows/module_release.yml@main"
9
+ secrets: "inherit"
.github/workflows/release_prep.yml
@@ -0,0 +1,15 @@
+name: "Release Prep"
+ inputs:
+ version:
+ description: "Module version to be released. Must be a valid semver string. (1.2.3)"
+ required: true
10
11
+ release_prep:
12
+ uses: "puppetlabs/cat-github-actions/.github/workflows/module_release_prep.yml@main"
13
+ with:
14
+ version: "${{ github.event.inputs.version }}"
15
0 commit comments