Skip to content

Commit af314cb

Browse files
committed
version_spec as input
1 parent 3560817 commit af314cb

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/actions/check-release/action.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ inputs:
88
description: "Changelog file"
99
default: "CHANGELOG.md"
1010
required: false
11+
version_spec:
12+
description: "New Version Specifier"
13+
required: false
14+
default: ""
1115
runs:
1216
using: "composite"
1317
steps:
@@ -22,7 +26,7 @@ runs:
2226
dry_run: true
2327
token: ${{ inputs.token }}
2428
changelog: ${{ inputs.changelog }}
25-
version_spec: ${{ env.RH_VERSION_SPEC }}
29+
version_spec: ${{ inputs.version_spec }}
2630

2731
- name: draft-release
2832
uses: jupyter-server/jupyter_releaser/.github/actions/draft-release@v1
@@ -32,7 +36,7 @@ runs:
3236
dry_run: true
3337
token: ${{ inputs.token }}
3438
changelog: ${{ inputs.changelog }}
35-
version_spec: ${{ env.RH_VERSION_SPEC }}
39+
version_spec: ${{ inputs.version_spec }}
3640

3741
- name: publish-release
3842
uses: jupyter-server/jupyter_releaser/.github/actions/publish-release@v1

0 commit comments

Comments
 (0)