diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 417b672b8..a80069cbe 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1044,8 +1044,8 @@ jobs: mask-aws-account-id: true - name: Publish artifacts run: |- - aws ssm put-parameter --name "/published/cdk/cli/version" --type "String" --value "${{ steps.aws-cdk-version.outputs.version }}" --overwrite - aws ssm put-parameter --name "/published/cdk/cli/timestamp" --type "String" --value "$(date +%s)" --overwrite + aws ssm put-parameter --name "/published/cdk/cli-npm/version" --type "String" --value "${{ steps.aws-cdk-version.outputs.version }}" --overwrite + aws ssm put-parameter --name "/published/cdk/cli-npm/timestamp" --type "String" --value "$(date +%s)" --overwrite aws-cdk-toolkit-lib_release_docs: name: "@aws-cdk/toolkit-lib: Publish docs to S3" needs: aws-cdk-toolkit-lib_release_npm diff --git a/projenrc/record-publishing-timestamp.ts b/projenrc/record-publishing-timestamp.ts index 28f9d0754..7b0e69205 100644 --- a/projenrc/record-publishing-timestamp.ts +++ b/projenrc/record-publishing-timestamp.ts @@ -11,7 +11,7 @@ export class RecordPublishingTimestamp extends Component { } public preSynthesize() { - const ssmPrefix = '/published/cdk/cli'; + const ssmPrefix = '/published/cdk/cli-npm'; const releaseWf = this.project_.github?.tryFindWorkflow('release'); if (!releaseWf) {