We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01556c0 commit fba6295Copy full SHA for fba6295
1 file changed
dist/index.js
@@ -160417,7 +160417,8 @@ async function startEc2Instance(label, githubRegistrationToken) {
160417
160418
const runInstancesCommand = new RunInstancesCommand(params);
160419
160420
- ec2.send(runInstancesCommand, (err, data) => {
+ console.log("beforesend")
160421
+ await ec2.send(runInstancesCommand, (err, data) => {
160422
if (err) {
160423
console.log(err, err.stack);
160424
core.error(`AWS EC2 instance failed to start - error: ${err}`)
@@ -160428,6 +160429,7 @@ async function startEc2Instance(label, githubRegistrationToken) {
160428
160429
return ec2InstanceIds;
160430
}
160431
});
160432
+ console.log("aftersend")
160433
160434
160435
async function terminateEc2Instance() {
0 commit comments