PP-841: retrieve server version from package.json (#127) #54
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: CD for QA | |
on: | |
push: | |
branches: [main] | |
jobs: | |
deploy-qa: | |
runs-on: ubuntu-latest | |
environment: | |
name: QA | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.QA_AWS_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.QA_AWS_SECRET_ACCESS_KEY }} | |
aws-region: ${{ secrets.QA_AWS_REGION }} | |
- name: Deploy rif-relay-server on QA | |
run: | | |
aws ssm send-command \ | |
--document-name "AWS-RunRemoteScript" \ | |
--instance-ids "${{ secrets.QA_EC2_ID }}" \ | |
--region=${{ secrets.QA_AWS_REGION }} \ | |
--parameters '{"sourceType":["GitHub"],"sourceInfo":["{\"owner\":\"rootstock\", \"repository\":\"ask-devops\", \"path\": \"rif-relay/\", \"tokenInfo\":\"{{ssm-secure:github-token}}\"}"],"commandLine":["deploy-qa.sh"]}' |