From 0b1b31d1392642e9314695b7a7cfa88556c18e65 Mon Sep 17 00:00:00 2001 From: Maksim Yersh Date: Thu, 16 Mar 2023 01:39:29 +0300 Subject: [PATCH] fix: get projen from npx in cicd --- src/github-actions.stack.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github-actions.stack.ts b/src/github-actions.stack.ts index af258c1..a665eb7 100644 --- a/src/github-actions.stack.ts +++ b/src/github-actions.stack.ts @@ -15,7 +15,7 @@ export class GithubActionsStack extends Stack { pipeline = new GitHubWorkflow(this, "Pipeline", { synth: new ShellStep("Build", { - commands: ["projen", "projen build"], + commands: ["npx projen", "npx projen build"], }), awsCreds: AwsCredentials.fromOpenIdConnect({ gitHubActionRoleArn: this.role.role.roleArn,