Skip to content

Commit 976716f

Browse files
Reset Genymotion authentication in post action
1 parent e8ad325 commit 976716f

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

dist/cleanup/index.js

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cleanup/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/cleanup/post.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ async function run() {
1212
core.setFailed(error.message);
1313
}
1414
}
15+
16+
try {
17+
core.info("Reset Genymotion SaaS authentication")
18+
await exec.exec('gmsaas auth reset');
19+
} catch (error) {
20+
core.setFailed(error.message);
21+
}
1522
}
1623

1724
run();

0 commit comments

Comments
 (0)