Skip to content

Commit d03597f

Browse files
committed
Explicitly exit after this action runs to not wait for hanging promises
* See ruby#543
1 parent 552f83f commit d03597f

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

dist/index.js

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.js

+3
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ export async function run() {
3030
core.setFailed(error.stack)
3131
}
3232
}
33+
// Explicit process.exit() to not wait hanging promises,
34+
// see https://github.com/ruby/setup-ruby/issues/543
35+
process.exit()
3336
}
3437

3538
// entry point when this action is run from other actions

0 commit comments

Comments
 (0)