From 8ee70f8d3d5b984130e46fb8ccbe229f5e1d68d0 Mon Sep 17 00:00:00 2001 From: Rob van der Leek <5324924+robvanderleek@users.noreply.github.com> Date: Thu, 18 Apr 2024 23:37:23 +0200 Subject: [PATCH] fix: Fix action --- src/action.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/action.js b/src/action.js index bb468ea..db862ed 100644 --- a/src/action.js +++ b/src/action.js @@ -96,7 +96,7 @@ function getSourceBranch() { } const slug = context.payload.repository.full_name; const branch = getSourceBranch(); - exitCode = await exec(filename, ['upload', '--token', token, slug, branch]); + exitCode = await exec(filename, ['app', 'upload', '--token', token, slug, branch]); } const doCheck = core.getInput('check') || true; if (doCheck && exitCode === 0) { @@ -112,4 +112,4 @@ function getSourceBranch() { fs.unlinkSync(filename); console.log('Done!'); process.exit(exitCode); -})(); \ No newline at end of file +})();