Skip to content

Commit 95d2ecf

Browse files
committed
remove dupe fail-fast and get output in text for secrets in codebuild job
1 parent ee2f1e9 commit 95d2ecf

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ jobs:
3636
linux-compat:
3737
runs-on: ubuntu-22.04
3838
strategy:
39-
fail-fast: false
4039
fail-fast: false
4140
matrix:
4241
image:

codebuild/setup-linux.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ make install
1919

2020
cd ..
2121

22-
cert=$(aws secretsmanager get-secret-value --secret-id "ci/CodeBuild/cert" --query "SecretString" | cut -f2 -d":" | cut -f2 -d\") && echo -e "$cert" > /tmp/certificate.pem
23-
key=$(aws secretsmanager get-secret-value --secret-id "ci/CodeBuild/key" --query "SecretString" | cut -f2 -d":" | cut -f2 -d\") && echo -e "$key" > /tmp/privatekey.pem
24-
key_p8=$(aws secretsmanager get-secret-value --secret-id "ci/CodeBuild/keyp8" --query "SecretString" | cut -f2 -d":" | cut -f2 -d\") && echo -e "$key_p8" > /tmp/privatekey_p8.pem
22+
cert=$(aws secretsmanager get-secret-value --secret-id "ci/CodeBuild/cert" --query "SecretString" --output text) && echo -e "$cert" > /tmp/certificate.pem
23+
key=$(aws secretsmanager get-secret-value --secret-id "ci/CodeBuild/key" --query "SecretString" --output text) && echo -e "$key" > /tmp/privatekey.pem
24+
key_p8=$(aws secretsmanager get-secret-value --secret-id "ci/CodeBuild/keyp8" --query "SecretString" --output text) && echo -e "$key_p8" > /tmp/privatekey_p8.pem

0 commit comments

Comments
 (0)