Skip to content

Commit 286423d

Browse files
authored
Merge pull request #1635 from Miepee/patch-4
Fix yet another crash of uploading CI
2 parents 4071f4e + b5c8615 commit 286423d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/publish_gui_nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ jobs:
160160
console.warn("Found the bleeding edge release that is draft.\nTrying to publish...");
161161
162162
try {
163-
await github.repos.updateRelease({owner, repo, release_id, draft: false});
163+
await github.rest.repos.updateRelease({owner, repo, release_id, draft: false});
164164
}
165165
catch (err) {
166166
if ('status' in err && err.status == 422) {

0 commit comments

Comments
 (0)