Skip to content

Commit 7a3f27e

Browse files
committed
Fix release script (bytecodealliance#11906)
This is an attempt to fix a bug with bytecodealliance#11901 where for 38.0.2 a draft release was made but it wasn't published due to a bug, so hopefully it'll be less buggy next time.
1 parent 7c142a6 commit 7a3f27e

File tree

1 file changed

+1
-1
lines changed
  • .github/actions/github-release

1 file changed

+1
-1
lines changed

.github/actions/github-release/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ async function runOnce() {
146146
octokit.rest.repos.updateRelease({
147147
owner,
148148
repo,
149-
release_id: release.id,
149+
release_id: release.data.id,
150150
draft: false,
151151
});
152152
}

0 commit comments

Comments
 (0)