2020-07-04 21:26:38 +08:00
|
|
|
const core = require('@actions/core');
|
2020-07-04 23:47:33 +08:00
|
|
|
const execlib = require('@actions/exec');
|
2020-07-04 21:26:38 +08:00
|
|
|
|
|
|
|
try {
|
2020-07-05 00:45:30 +08:00
|
|
|
const branchName = getBranchName();
|
|
|
|
core.setOutput("branchname", branchName);
|
|
|
|
} catch (error) {
|
|
|
|
core.setFailed(error.message);
|
|
|
|
}
|
|
|
|
|
|
|
|
async function getBranchName() {
|
2020-07-04 23:42:55 +08:00
|
|
|
let output = '';
|
2020-07-04 23:47:33 +08:00
|
|
|
const options = {
|
|
|
|
listeners: {
|
|
|
|
stdout: (data) => output += data.toString()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-07-05 00:43:20 +08:00
|
|
|
await execlib.exec('git', ['branch'], options);
|
2020-07-05 00:45:30 +08:00
|
|
|
|
|
|
|
return output;
|
2020-07-04 21:26:38 +08:00
|
|
|
}
|