Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustav-Eikaas committed Nov 5, 2024
1 parent 0b875e4 commit 22261f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion github-action/src/utils/makeManifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export function makeManifest(path: string) {
//required
entryPoint: "app-bundle.js",
//required
version: "1.0.0"
version: "1.0.1"
//TODO: add commit sha and github repo
//timestamp: "string",
//commitSha: "string",
Expand Down
2 changes: 1 addition & 1 deletion github-action/src/utils/uploadBundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export async function uploadBundle(
'',
headers
);
if (publishResponse.message.statusCode !== 200) {
if (publishResponse.message.statusCode !== 201) {
logInfo(`Failed to publish ${appKey}, code: ${r.message.statusCode}`, 'Red');
throw new Error(JSON.stringify(publishResponse.message));
}
Expand Down

0 comments on commit 22261f9

Please sign in to comment.