Skip to content

Commit 101829e

Browse files
committed
fix: fix build error
1 parent 8cd8f9f commit 101829e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ console.log(`Running in ${baseDir}`);
4545
info('> Pulling from remote...')
4646
await git
4747
.fetch(undefined, log)
48-
.pull(undefined, undefined, [getInput('pull_stategy')], log)
48+
.pull(undefined, undefined, {
49+
[getInput('pull_stategy')]: null
50+
}, log)
4951

5052
info('> Re-staging files...')
5153
if (getInput('add')) await add({ ignoreErrors: true })

0 commit comments

Comments
 (0)