Skip to content

Commit f8dac63

Browse files
Fix - cd deploy yaml
1 parent 6fdb7af commit f8dac63

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/cd-deploy.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,17 @@ on:
77

88
jobs:
99
deploy:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-18.04
1111
steps:
1212
- name: Configure AWS credentials
1313
uses: aws-actions/configure-aws-credentials@v1
1414
with:
15-
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
16-
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
17-
aws-region: us-east-2
15+
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
16+
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
17+
aws-region: us-east-2
1818
- name: Deploy application
1919
id: deployApplicaiton
2020
run: |
21-
# We call the aws deploy command, get the deployment id and store it in the output steps
2221
deploymentId=$(aws deploy create-deployment \
2322
--application-name PiggyWallet-backend \
2423
--deployment-config-name CodeDeployDefault.OneAtATime \

0 commit comments

Comments
 (0)