mirror of
https://github.com/yeslayla/run-gut-tests-action.git
synced 2025-01-13 12:33:41 +01:00
Bugfix cwd
This commit is contained in:
parent
d318979099
commit
db0ad0d03b
@ -7,7 +7,6 @@ inputs:
|
||||
default: "barichello/godot-ci:latest"
|
||||
directory:
|
||||
description: "The name directory to run tests in."
|
||||
defaut: "."
|
||||
runs:
|
||||
using: "node12"
|
||||
main: "dist/index.js"
|
||||
|
5
dist/index.js
vendored
5
dist/index.js
vendored
@ -12191,7 +12191,10 @@ try {
|
||||
var docker_image = core.getInput('containerImage');
|
||||
var work_dir = core.getInput('directory');
|
||||
|
||||
process.chdir(work_dir);
|
||||
if(work_dir)
|
||||
{
|
||||
process.chdir(work_dir);
|
||||
}
|
||||
|
||||
// Pull docker image for building
|
||||
console.log("Pulling build image...");
|
||||
|
Loading…
Reference in New Issue
Block a user