Skip to content

Commit

Permalink
Fix deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Boldizsar Mezei committed Oct 24, 2023
1 parent eb2a1e6 commit 900eccb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions packages/functions/deploy.script.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ Object.entries({
--allow-unauthenticated \\
--ingress=internal-and-cloud-load-balancing \\
`;
if (options?.region) {
command += ` --region=${options.region} \\\n`;
}
if (options?.timeoutSeconds) {
command += ` --timeout=${options.timeoutSeconds} \\\n`;
}
Expand Down
6 changes: 3 additions & 3 deletions packages/interfaces/src/functions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ export enum WEN_FUNC {

uploadFile = 'uploadfile',

createProject = 'createProject',
deactivateProject = 'deactivateProject',
createProjetApiKey = 'createProjetApiKey',
createProject = 'createproject',
deactivateProject = 'deactivateproject',
createProjetApiKey = 'createprojetapikey',

stamp = 'stamp',
}
Expand Down

0 comments on commit 900eccb

Please sign in to comment.