Skip to content

Commit

Permalink
Update release action
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-lang committed Dec 13, 2024
1 parent ed50d81 commit ef88851
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ on: # yamllint disable-line rule:truthy
description: Tag to create
required: true
type: string
draft:
description: Create / update as draft
default: true
required: true
type: boolean

# Workflow jobs
jobs:
Expand Down Expand Up @@ -45,5 +50,9 @@ jobs:
tag: ${{ inputs.tag }} #${{ github.ref_name }}
commit: main
prerelease: true
draft: true
generateReleaseNotes: true
draft: ${{ inputs.draft }}
generateReleaseNotes: true
allowUpdates: true
replacesArtifacts: true
omitPrereleaseDuringUpdate: true
omitNameDuringUpdate: true

0 comments on commit ef88851

Please sign in to comment.