Skip to content

Commit

Permalink
fix 2
Browse files Browse the repository at this point in the history
  • Loading branch information
xTVaser committed Jan 7, 2024
1 parent 74de168 commit 71cee0a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release_cut_new.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ on:
workflow_dispatch:
inputs:
is_prelease:
description: 'Is this a pre-release?'
description: 'Should be a pre-release?'
type: boolean
required: true
default: true
tag_value:
description: 'Create a new version from latest master with the given tag, if omitted it will bump the patch version'
description: 'Create a new release from latest master with the given tag, if this is left blank it will bump the patch version. You dont need to include the "v" prefix'
required: false

permissions:
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:

- name: Create a GitHub Release (Push)
uses: softprops/action-gh-release@v1
if: steps.tag_version.outputs.new_tag
if: steps.tag_version.outputs.new_tag && github.event_name != 'workflow_dispatch'
with:
body_path: ./release-notes.md
draft: true
Expand Down

0 comments on commit 71cee0a

Please sign in to comment.