We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5c11b36 + 5aa0d12 commit 05f7924Copy full SHA for 05f7924
.github/actions/github-release/main.js
@@ -21,7 +21,12 @@ async function runOnce() {
21
core.info(`files: ${files}`);
22
core.info(`name: ${name}`);
23
24
- const octokit = github.getOctokit(token);
+ const options = {
25
+ request: {
26
+ timeout: 30000,
27
+ }
28
+ };
29
+ const octokit = github.getOctokit(token, options);
30
31
// Delete the previous release since we can't overwrite one. This may happen
32
// due to retrying an upload or it may happen because we're doing the dev
0 commit comments