mirror of
https://github.com/yeslayla/run-gut-tests-action.git
synced 2025-07-27 00:39:54 +02:00
Bugfix cwd
This commit is contained in:
@ -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...");
|
||||
|
Reference in New Issue
Block a user