mirror of
https://github.com/ad-m/github-push-action.git
synced 2025-06-08 06:27:02 +09:00
12 lines
259 B
JavaScript
12 lines
259 B
JavaScript
const exec = require("@actions/exec");
|
|
const path = require("path");
|
|
|
|
const main = async () => {
|
|
await exec(path.join(__dirname, "./start.sh"));
|
|
};
|
|
|
|
main().catch(err => {
|
|
console.error(err);
|
|
console.error(err.stack);
|
|
process.exit(err.code || -1);
|
|
});
|