From eae7b07ee6ee0f0f2ae994887a2e7d28a1c5e005 Mon Sep 17 00:00:00 2001 From: Dharshi Balasubramaniyam <139672976+DharshiBalasubramaniyam@users.noreply.github.com> Date: Mon, 1 Jul 2024 08:03:30 +0530 Subject: [PATCH] Update ci-cd.yml --- .github/workflows/ci-cd.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index a59b385..fb4104f 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -24,14 +24,14 @@ jobs: - name: Build with Maven # Step to build the project with Maven run: mvn clean install - # - name: Login to DockerHub # Step to login to DockerHub - # run: docker login -u ${{secrets.DOCKER_USERNAME}} -p ${{secrets.DOCKER_PASSWORD}} - - # - name: Build Docker image # Step to build the Docker image - # run: docker build -t dharshib/springboot-ci-cd . - - # - name: Push the image to DockerHub # Step to push the Docker image to DockerHub - # run: docker push dharshib/springboot-ci-cd:latest + - name: build and push the docker image to dockerhub + run: | + # 1. Login to DockerHub + # 2. Build the Docker image + # 3. Push the Docker image to DockerHub + docker login -u ${{secrets.DOCKER_USERNAME}} -p ${{secrets.DOCKER_PASSWORD}} + docker build -t dharshib/springboot-ci-cd . + docker push dharshib/springboot-ci-cd:latest - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@v4 @@ -60,7 +60,7 @@ jobs: # Updating our ECS task definition file with the newly built Docker image ID # after successfully building and pushing the Docker image to Amazon ECR. - - name: Fill in the new image ID in the Amazon ECS task definition + - name: Update ECS task definition with new image id: task-def uses: aws-actions/amazon-ecs-render-task-definition@v1 with: @@ -68,7 +68,7 @@ jobs: container-name: ${{ secrets.CONTAINER_NAME }} image: ${{ steps.build-image.outputs.image }} - - name: Deploy Amazon ECS task definition + - name: Deploy the updated ECS task definition uses: aws-actions/amazon-ecs-deploy-task-definition@v1 with: task-definition: ${{ steps.task-def.outputs.task-definition }}