Skip to content

Commit f1f8d9f

Browse files
authored
chore: fix typo (#392)
1 parent cacee86 commit f1f8d9f

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

codebuild/release/release-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ phases:
2121
- git checkout $BRANCH
2222
- export VERSION=$(grep version pom.xml | head -n 1 | sed -n 's/[ \t]*<version>\(.*\)<\/version>/\1/p')
2323
- export SETTINGS_FILE=$(pwd)/codebuild/release/settings.xml
24-
- aws secretsmanager get-secret-value --region us-west-2 --secret-id Maven-GPG-Keys --query SecretBinary --output text | base64 -d > ~/mvn_pg.tgz
24+
- aws secretsmanager get-secret-value --region us-west-2 --secret-id Maven-GPG-Keys --query SecretBinary --output text | base64 -d > ~/mvn_gpg.tgz
2525
- tar -xvf ~/mvn_gpg.tgz -C ~
2626
build:
2727
commands:

codebuild/release/validate-prod.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,18 @@
33

44
version: 0.2
55

6+
env:
7+
variables:
8+
BRANCH: "mainline-1.x"
9+
610
phases:
711
install:
812
runtime-versions:
913
java: $JAVA_ENV_VERSION
1014
pre_build:
1115
commands:
16+
- git checkout $BRANCH
17+
- export VERSION=$(grep version pom.xml | head -n 1 | sed -n 's/[ \t]*<version>\(.*\)<\/version>/\1/p')
1218
- git clone https://github.com/aws-samples/busy-engineers-document-bucket.git
1319
- cd busy-engineers-document-bucket/exercises/java/encryption-context-complete
1420
build:

0 commit comments

Comments
 (0)