From c34ce79dcd510ca763168835afc769e6dd209b6c Mon Sep 17 00:00:00 2001 From: Michael Lin <mikemlin@amazon.com> Date: Wed, 26 Oct 2022 18:14:23 +0000 Subject: [PATCH] Squashed commit of the following commit c834be44 Author: Michael Lin <mikemlin@amazon.com> Date: Tue Oct 25 2022 08:45:51 GMT-0700 (Pacific Daylight Time) fix git secrets via buildspec.yaml file --- provider/notification-aws/build-aws/buildspec.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/provider/notification-aws/build-aws/buildspec.yaml b/provider/notification-aws/build-aws/buildspec.yaml index 590ca2d90..e58e7ce53 100644 --- a/provider/notification-aws/build-aws/buildspec.yaml +++ b/provider/notification-aws/build-aws/buildspec.yaml @@ -44,6 +44,10 @@ phases: - export AWS_ACCOUNT_ID=`aws sts get-caller-identity | grep Account | cut -d':' -f 2 | cut -d'"' -f 2` - export AWS_OSDU_DEV_MAVEN_AUTH_TOKEN=`aws codeartifact get-authorization-token --domain $AWS_OSDU_DEV_MAVEN_DOMAIN --domain-owner $AWS_ACCOUNT_ID --query authorizationToken --output text` # Install git secrets + #TODO temporarily adding hotfix, due to https://github.com/awslabs/git-secrets/issues/220 + - export SAY_LOCATION=`ln -s "$(which echo)" say` + - export PATH="$PATH:$SAY_LOCATION" + - git clone https://github.com/awslabs/git-secrets.git - cd git-secrets && make install && cd .. - git secrets --install && git secrets --register-aws -- GitLab