mirror of
https://github.com/stefanzweifel/git-auto-commit-action.git
synced 2024-11-06 02:08:05 +00:00
14 lines
226 B
JavaScript
14 lines
226 B
JavaScript
|
const core = require('@actions/core');
|
||
|
const exec = require('@actions/exec');
|
||
|
|
||
|
async function run() {
|
||
|
try {
|
||
|
await exec.exec('sh', ['entrypoint.sh']);
|
||
|
}
|
||
|
catch (error) {
|
||
|
core.setFailed(error.message);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
run()
|