1
0
Fork 0
mirror of https://github.com/ad-m/github-push-action.git synced 2025-06-08 06:27:02 +09:00
github-push-action/start.js
2021-01-02 06:29:28 +01:00

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);
});