semantic-branch-version/index.js

22 lines
474 B
JavaScript
Raw Normal View History

const core = require('@actions/core');
2020-07-04 23:47:33 +08:00
const execlib = require('@actions/exec');
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() {
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;
}