Skip to content

Commit

Permalink
updated aws credentials action
Browse files Browse the repository at this point in the history
  • Loading branch information
riteshsonawane1372 committed Oct 15, 2024
1 parent 7c9d794 commit 406fba5
Showing 1 changed file with 35 additions and 36 deletions.
71 changes: 35 additions & 36 deletions .github/workflows/build-push-ecr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ on:
pull_request:
branches: [ "main" ]

# env:
# Dockerfile_Backend: Dockerfile
# Dockerfile_Web: web/Dockerfile
env:
Dockerfile_Backend: Dockerfile
Dockerfile_Web: web/Dockerfile
jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -19,7 +19,7 @@ jobs:
uses: docker/setup-buildx-action@v3.0.0

- name: Setup AWS Creds
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v4.0.2
with:
aws-access-key-id: ${{ secrets.ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.SECRET_ACCESS_KEY }}
Expand All @@ -30,38 +30,37 @@ jobs:
id: ecr-login
uses: aws-actions/amazon-ecr-login@v1

# - name: Build Backend and and push
# if: github.event_name != 'pull_request'
# env:
# ECR_REGISTRY: ${{ steps.ecr-login.outputs.registry }}
# ECR_REPOSITORY: ${{ secrets.BACKEND_ECR_REPOSITORY }}
# run: |
# VERSION_TAG=$(echo "${{ github.ref }}" | cut -d'/' -f 3)
# TAG=$ECR_REGISTRY/$ECR_REPOSITORY:${VERSION_TAG}
# docker build --platform linux/amd64 --push -t ${TAG} -f ${{ env.Dockerfile_Backend }} .
#
# - name: Build Backend image
# if: github.event_name == 'pull_request'
# run: |
# docker build --platform linux/amd64 -f ${{ env.Dockerfile_Backend }} .
#
#
# - name: Build Web and and push
# if: github.event_name != 'pull_request'
# env:
# ECR_REGISTRY: ${{ steps.ecr-login.outputs.registry }}
# ECR_REPOSITORY: ${{ secrets.WEB_ECR_REPOSITORY }}
# run: |
# VERSION_TAG=$(echo "${{ github.ref }}" | cut -d'/' -f 3)
# TAG=$ECR_REGISTRY/$ECR_REPOSITORY:${VERSION_TAG}
# docker build --platform linux/amd64 --push -t ${TAG} -f ${{ env.Dockerfile_Web }} web/
#
# - name: Build Web image
# if: github.event_name == 'pull_request'
# run: |
# docker build --platform linux/amd64 -f ${{ env.Dockerfile_Web }} web/
# #docker
#
- name: Build Backend and and push
if: github.event_name != 'pull_request'
env:
ECR_REGISTRY: ${{ steps.ecr-login.outputs.registry }}
ECR_REPOSITORY: ${{ secrets.BACKEND_ECR_REPOSITORY }}
run: |
VERSION_TAG=$(echo "${{ github.ref }}" | cut -d'/' -f 3)
TAG=$ECR_REGISTRY/$ECR_REPOSITORY:${VERSION_TAG}
docker build --platform linux/amd64 --push -t ${TAG} -f ${{ env.Dockerfile_Backend }} .
- name: Build Backend image
if: github.event_name == 'pull_request'
run: |
docker build --platform linux/amd64 -f ${{ env.Dockerfile_Backend }} .
- name: Build Web and and push
if: github.event_name != 'pull_request'
env:
ECR_REGISTRY: ${{ steps.ecr-login.outputs.registry }}
ECR_REPOSITORY: ${{ secrets.WEB_ECR_REPOSITORY }}
run: |
VERSION_TAG=$(echo "${{ github.ref }}" | cut -d'/' -f 3)
TAG=$ECR_REGISTRY/$ECR_REPOSITORY:${VERSION_TAG}
docker build --platform linux/amd64 --push -t ${TAG} -f ${{ env.Dockerfile_Web }} web/
- name: Build Web image
if: github.event_name == 'pull_request'
run: |
docker build --platform linux/amd64 -f ${{ env.Dockerfile_Web }} web/


Expand Down

0 comments on commit 406fba5

Please sign in to comment.