Skip to content

Commit 2b9e09d

Browse files
committed
wip
1 parent ed7f4e1 commit 2b9e09d

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

ci/pipelines/default-pipeline.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ include:
44
# SETUP
55

66
stages:
7+
- print-keystore
78
- ci-image
89
- security
910
- analysis
@@ -48,6 +49,21 @@ stages:
4849

4950
# CI IMAGE
5051

52+
print-keystore:
53+
stage: ci-image
54+
image: $CI_IMAGE_DOCKER
55+
tags: [ "arch:amd64" ]
56+
script:
57+
- mkdir ./ci/script
58+
- echo $(aws ssm get-parameter --region us-east-1 --name ci.dd-sdk-android.keystore --with-decryption --query "Parameter.Value" --out text) > ./ci/script/keystore
59+
- echo $(aws ssm get-parameter --region us-east-1 --name ci.dd-sdk-android.keystore --with-decryption --query "Parameter.Value" --out text | base64 -d)
60+
artifacts:
61+
expire_in: 1 day
62+
paths:
63+
- ./ci/script/keystore
64+
65+
66+
5167
ci-image:
5268
stage: ci-image
5369
when: manual

0 commit comments

Comments
 (0)