From 101829e6c0117009f2737b150705813e41666b0f Mon Sep 17 00:00:00 2001 From: Federico Grandi Date: Thu, 29 Oct 2020 08:40:06 +0100 Subject: [PATCH] fix: fix build error --- src/main.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index fc8f4c0..8b83b83 100644 --- a/src/main.ts +++ b/src/main.ts @@ -45,7 +45,9 @@ console.log(`Running in ${baseDir}`); info('> Pulling from remote...') await git .fetch(undefined, log) - .pull(undefined, undefined, [getInput('pull_stategy')], log) + .pull(undefined, undefined, { + [getInput('pull_stategy')]: null + }, log) info('> Re-staging files...') if (getInput('add')) await add({ ignoreErrors: true })