Skip to content

Commit

Permalink
Update build.yml old build
Browse files Browse the repository at this point in the history
  • Loading branch information
imrkgofficial authored Nov 27, 2024
1 parent 6d9242c commit 5d71ef1
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build to AWS ECR

on: push
on: push

jobs:
login-to-aws:
Expand All @@ -14,28 +14,25 @@ jobs:
with:
aws-access-key-id: ${{ secrets.ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.PUBLIC_REGION }}
aws-region: ${{ secrets.REGION }}

build-and-push-pub-ecr:
runs-on: ubuntu-latest
needs:
login-to-aws:

needs: login-to-aws

steps:
- name: Code Checkout
uses: actions/checkout@v4

- name: Login to AWSECR
- name: Login to AWS ECR
uses: docker/login-action@v3
with:
registry: public.ecr.aws
username: ${{ secrets.ACCESS_KEY }}
password: ${{ secrets.SECRET_ACCESS_KEY }}
env:
aws-region: ${{ secrets.PUBLIC_REGION }}

- name: Build Image

- name: Build and Push Image
run: |
docker build -t bank .
docker tag bank:latest public.ecr.aws/h8o8x8t1/bank:v2
docker push public.ecr.aws/h8o8x8t1/bank:v2
docker build -t bank .
docker tag bank:latest public.ecr.aws/h8o8x8t1/bank:v1
docker push public.ecr.aws/h8o8x8t1/bank:v1

0 comments on commit 5d71ef1

Please sign in to comment.