We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5488ea6 commit f62b7c1Copy full SHA for f62b7c1
.github/workflows/ci-develop.yml
@@ -38,6 +38,15 @@ jobs:
38
npm ci
39
npm run build
40
41
+ # Configure AWS credentials FIRST
42
+ - name: Configure AWS credentials
43
+ uses: aws-actions/configure-aws-credentials@v4
44
+ with:
45
+ aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
46
+ aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
47
+ aws-region: ${{ secrets.AWS_REGION }}
48
+
49
50
# Docker login to ECR
51
- name: Login to Amazon ECR
52
uses: aws-actions/amazon-ecr-login@v2
0 commit comments