We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed7f4e1 commit 2b9e09dCopy full SHA for 2b9e09d
ci/pipelines/default-pipeline.yml
@@ -4,6 +4,7 @@ include:
4
# SETUP
5
6
stages:
7
+ - print-keystore
8
- ci-image
9
- security
10
- analysis
@@ -48,6 +49,21 @@ stages:
48
49
50
# CI IMAGE
51
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
67
ci-image:
68
stage: ci-image
69
when: manual
0 commit comments