Skip to content

Commit e8b8a72

Browse files
authored
Fix release script (#11906) (#11914)
This is an attempt to fix a bug with #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 b27d62c commit e8b8a72

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)