Skip to content

Commit

Permalink
Make publishRelease task publish a real release instead of a draft (#50)
Browse files Browse the repository at this point in the history
* Accidentally made the release a draft by default, fixed that

* Change files
  • Loading branch information
rlandav authored Jan 9, 2025
1 parent 27afd1d commit 331b29c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "patch",
"comment": "Accidentally made the release a draft by default, fixed that",
"packageName": "@minecraft/core-build-tasks",
"email": "rlanda@microsoft.com",
"dependentChangeType": "patch"
}
2 changes: 1 addition & 1 deletion tools/core-build-tasks/src/tasks/publishRelease.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export function publishReleaseTask(config: PublishReleaseTaskConfig) {
tag_name: tagName,
name: `${name} ${publishedVersion}`,
body,
draft: true,
draft: false,
prerelease: false,
generate_release_notes: false,
headers: {
Expand Down

0 comments on commit 331b29c

Please sign in to comment.