-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpost.js
38 lines (32 loc) · 1 KB
/
post.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
const core = require("@actions/core");
const exec = require("@actions/exec");
async function unsetGitInsteadOfSsh() {
await exec.exec(`git config --global --unset url."[email protected]:".insteadOf`);
}
async function unsetGitInsteadOfHttps(github_token) {
await exec.exec(`git config --global --unset url."https://git:${github_token}@github.com/".insteadOf`);
}
async function stopSshAgent() {
const { stdout } = await exec.getExecOutput("ssh-agent -k");
stdout.split("\n").forEach(line => {
const match = /unset (.*);/.exec(line);
if (match) {
core.exportVariable(match[1], "");
}
});
}
async function post() {
const protocol = core.getInput("protocol", { required: true });
const github_token = core.getInput("github-token", { required: protocol == "https" });
if (protocol === "ssh") {
await unsetGitInsteadOfSsh();
await stopSshAgent();
} else {
await unsetGitInsteadOfHttps(github_token);
}
}
if (!module.parent) {
post().catch(e => {
console.error(e);
});
}