Skip to content

Commit

Permalink
version_spec as input
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpio committed Oct 20, 2021
1 parent 3560817 commit af314cb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/actions/check-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ inputs:
description: "Changelog file"
default: "CHANGELOG.md"
required: false
version_spec:
description: "New Version Specifier"
required: false
default: ""
runs:
using: "composite"
steps:
Expand All @@ -22,7 +26,7 @@ runs:
dry_run: true
token: ${{ inputs.token }}
changelog: ${{ inputs.changelog }}
version_spec: ${{ env.RH_VERSION_SPEC }}
version_spec: ${{ inputs.version_spec }}

- name: draft-release
uses: jupyter-server/jupyter_releaser/.github/actions/draft-release@v1
Expand All @@ -32,7 +36,7 @@ runs:
dry_run: true
token: ${{ inputs.token }}
changelog: ${{ inputs.changelog }}
version_spec: ${{ env.RH_VERSION_SPEC }}
version_spec: ${{ inputs.version_spec }}

- name: publish-release
uses: jupyter-server/jupyter_releaser/.github/actions/publish-release@v1
Expand Down

0 comments on commit af314cb

Please sign in to comment.