CP-8108: Use AWS Secrets Manager to store envs #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bitrise Envs Sync | |
on: | |
pull_request: | |
# The branches below must be a subset of the branches above | |
branches: ['development'] | |
workflow_dispatch: | |
jobs: | |
upload-envs-to-bitrise: | |
name: Upload envs to Bitrise | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v3 | |
- name: Configure AWS Credentials Action for GitHub Actions | |
uses: aws-actions/[email protected] | |
with: | |
aws-region: us-east-2 | |
role-to-assume: arn:aws:iam::975050371175:role/github-sa-role | |
role-session-name: githubsa | |
- name: Retrieve envs from AWS Secrets Manager 1 | |
working-directory: packages/core-mobile/scripts/github | |
env: | |
AWS_EC2_METADATA_DISABLED: 'true' | |
run: | | |
export AWS_REGION="us-east-2" | |
export AWS_DEFAULT_REGION="us-east-2" | |
export AWS_EC2_METADATA_DISABLED="true" | |
sudo aws secretsmanager list-secrets | |
sudo aws secretsmanager get-secret-value --secret-id core/dev/mobile/.env.development.test | grep "SecretString" | |
- name: Retrieve envs from AWS Secrets Manager 2 | |
working-directory: packages/core-mobile/scripts/github | |
run: | | |
aws secretsmanager get-secret-value --secret-id "core/dev/mobile/.env.development.test" | grep "SecretString" | |
- name: Retrieve envs from AWS Secrets Manager | |
working-directory: packages/core-mobile/scripts/github | |
run: | | |
./fetchEnvsFromAWS.sh "core/dev/mobile/.env.development.test" ".env.test" | |
cat .env.test |