Skip to content

Commit

Permalink
add better release titles
Browse files Browse the repository at this point in the history
  • Loading branch information
Phoebe authored and Phoebe committed Feb 11, 2024
1 parent 8ad89c3 commit c859e02
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ jobs:
console.log({ owner, repo, sha });
const tag = "pre-" + sha;
const releaseBody = "Release for " + tag;
// Read and process CHANGELOG.md
let releaseName = tag;
Expand All @@ -84,10 +83,10 @@ jobs:
const release = await github.repos.createRelease({
owner, repo,
tag_name: tag,
name: tag,
draft: true,
name: releaseName,
draft: false,
target_commitish: sha,
body: releaseBody,
body: releaseContent,
prerelease: true,
make_latest: "true"
});
Expand Down

0 comments on commit c859e02

Please sign in to comment.