Skip to content

Commit

Permalink
fix: get projen from npx in cicd
Browse files Browse the repository at this point in the history
  • Loading branch information
edelwud committed Mar 15, 2023
1 parent b9b81ca commit 0b1b31d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/github-actions.stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 0b1b31d

Please sign in to comment.