mirror of
https://github.com/diligencia/semantic-branch-version.git
synced 2024-11-23 12:43:50 +08:00
16 lines
374 B
JavaScript
16 lines
374 B
JavaScript
const core = require('@actions/core');
|
|
const execlib = require('@actions/exec');
|
|
|
|
try {
|
|
let output = '';
|
|
const options = {
|
|
listeners: {
|
|
stdout: (data) => output += data.toString()
|
|
}
|
|
};
|
|
|
|
await execlib.exec('git', ['branch'], options);
|
|
core.setOutput("branchname", output);
|
|
} catch (error) {
|
|
core.setFailed(error.message);
|
|
} |