Skip to content

Commit

Permalink
Temp log
Browse files Browse the repository at this point in the history
  • Loading branch information
andershagbard committed Jul 11, 2023
1 parent eb8c620 commit fe57588
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/actions/parts/upload-zip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,14 +46,16 @@ export default async (
await s3.send(putObject);
const src = await getSignedUrl(s3, getObject);

core.info(src);

// Send create theme request
core.info('Creating theme');
const response = await createTheme({
src,
...data,
}).finally(async () => {
// Delete zip
await s3.send(deleteObject);
// await s3.send(deleteObject);
});

return response.theme.id;
Expand Down

0 comments on commit fe57588

Please sign in to comment.