Skip to content

Commit

Permalink
fix: Fix action
Browse files Browse the repository at this point in the history
  • Loading branch information
robvanderleek committed Apr 18, 2024
1 parent c735601 commit 8ee70f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/action.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -112,4 +112,4 @@ function getSourceBranch() {
fs.unlinkSync(filename);
console.log('Done!');
process.exit(exitCode);
})();
})();

0 comments on commit 8ee70f8

Please sign in to comment.