From 52664750bbc1ffc79b8363971ad27c2fccfaa388 Mon Sep 17 00:00:00 2001 From: Ujwal <63979260+ujwalbukka@users.noreply.github.com> Date: Mon, 8 Apr 2024 19:22:29 -0400 Subject: [PATCH] fix: Point solutions release github action (#27) * point solutions release github action fix * chore: self mutation Signed-off-by: github-actions * point solutions release github action fix --------- Signed-off-by: github-actions Co-authored-by: github-actions --- .../workflows/release_cdklabs-sbt-point-solutions-lib.yml | 2 ++ .projenrc.ts | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/release_cdklabs-sbt-point-solutions-lib.yml b/.github/workflows/release_cdklabs-sbt-point-solutions-lib.yml index 8025d9e..e0f32cc 100644 --- a/.github/workflows/release_cdklabs-sbt-point-solutions-lib.yml +++ b/.github/workflows/release_cdklabs-sbt-point-solutions-lib.yml @@ -35,6 +35,8 @@ jobs: - name: Install dependencies run: npm ci working-directory: ./ + - name: Install Dependencies + run: npm ci - name: release run: npx projen release - name: Check if version has already been tagged diff --git a/.projenrc.ts b/.projenrc.ts index c137941..dcec206 100644 --- a/.projenrc.ts +++ b/.projenrc.ts @@ -137,6 +137,12 @@ const jsiiLibraryProjectOptions: cdk.JsiiProjectOptions = { ], }, release: true, + releaseWorkflowSetupSteps: [ + { + name: 'Install Dependencies', + run: 'npm ci', + }, + ], bundledDeps: [ '@aws-sdk/client-sts', '@aws-sdk/client-ssm',