File tree 2 files changed +11
-1
lines changed
2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change 7
7
description : " The target for the release. This can be a commit sha or a branch."
8
8
required : false
9
9
default : " main"
10
+ ruby-version :
11
+ description : " Ruby version to use."
12
+ required : false
13
+ default : " 3.1"
10
14
11
15
jobs :
12
16
release :
13
17
uses : " puppetlabs/cat-github-actions/.github/workflows/gem_release.yml@main"
14
18
with :
15
19
target : " ${{ github.event.inputs.target }}"
20
+ ruby-version : " ${{ github.event.inputs.ruby-version }}"
16
21
secrets : " inherit"
Original file line number Diff line number Diff line change 10
10
version :
11
11
description : " Version of gem to be released."
12
12
required : true
13
+ ruby-version :
14
+ description : " Ruby version to use."
15
+ required : false
16
+ default : " 3.1"
13
17
14
18
jobs :
15
19
release_prep :
16
20
uses : " puppetlabs/cat-github-actions/.github/workflows/gem_release_prep.yml@main"
17
21
with :
18
22
target : " ${{ github.event.inputs.target }}"
19
- version : " ${{ github.events.inputs.version }}"
23
+ version : " ${{ github.event.inputs.version }}"
24
+ ruby-version : " ${{ github.event.inputs.ruby-version }}"
20
25
secrets : " inherit"
You can’t perform that action at this time.
0 commit comments