Skip to content

Commit

Permalink
Reset Genymotion authentication in post action
Browse files Browse the repository at this point in the history
  • Loading branch information
thomascarpentier committed Oct 30, 2024
1 parent e8ad325 commit 69e4f00
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
7 changes: 7 additions & 0 deletions dist/cleanup/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/cleanup/index.js.map

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions src/cleanup/post.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ async function run() {
core.setFailed(error.message);
}
}

try {
core.info('Reset Genymotion SaaS authentication');
await exec.exec('gmsaas auth reset');
} catch (error) {
core.setFailed(error.message);
}
}

run();

0 comments on commit 69e4f00

Please sign in to comment.