Compare commits
2 Commits
610ee118f3
...
e6f9848000
Author | SHA1 | Date | |
---|---|---|---|
e6f9848000
|
|||
7892a1fa7c
|
6
dist/main.js
vendored
6
dist/main.js
vendored
@@ -3,7 +3,11 @@ const path = require("path");
|
||||
const fs = require("fs");
|
||||
|
||||
function run(script) {
|
||||
cp.execFileSync(script, { stdio: "inherit", shell: true });
|
||||
cp.execFileSync(script, {
|
||||
stdio: "inherit",
|
||||
shell: true,
|
||||
cwd: process.env.GITHUB_WORKSPACE || process.cwd()
|
||||
});
|
||||
}
|
||||
|
||||
function exportOutput(key, value) {
|
||||
|
1
dist/post.js
vendored
1
dist/post.js
vendored
@@ -7,6 +7,7 @@ function run(script, args = []) {
|
||||
stdio: "inherit",
|
||||
shell: true,
|
||||
env: process.env,
|
||||
cwd: process.env.GITHUB_WORKSPACE || process.cwd(),
|
||||
});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user