Skip to content

Commit

Permalink
Active body updating options.
Browse files Browse the repository at this point in the history
  • Loading branch information
owent committed Apr 25, 2024
1 parent c5c3b37 commit c3d1e0c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39569,7 +39569,7 @@ async function run() {
tag_name: release_tag_name,
target_commitish: github.context.sha,
name: release_name,
body: deploy_release.data.body || undefined,
body: deploy_release_body,
draft: is_draft,
prerelease: is_prerelease,
}).catch((error) => {
Expand Down
2 changes: 1 addition & 1 deletion lib/index.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ async function run() {
tag_name: release_tag_name,
target_commitish: action_github.context.sha,
name: release_name,
body: deploy_release.data.body || undefined,
body: deploy_release_body,
draft: is_draft,
prerelease: is_prerelease,
}).catch((error) => {
Expand Down

0 comments on commit c3d1e0c

Please sign in to comment.