Skip to content

Commit

Permalink
Merge pull request #15 from Somnath-Chattaraj/test2
Browse files Browse the repository at this point in the history
minor update
  • Loading branch information
Somnath-Chattaraj authored Jul 29, 2024
2 parents 302eb49 + 7f4a333 commit 7717859
Showing 1 changed file with 17 additions and 16 deletions.
33 changes: 17 additions & 16 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,24 @@ on:
jobs:
build-and-push:
runs-on: ubuntu-latest

steps:
- name: Check Out Repo
uses: actions/checkout@v2
- name: Check Out Repo
uses: actions/checkout@v2

- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Log in to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and Push Docker image
uses: docker/build-push-action@v2
with:
context: .
file: ./backend/Dockerfile
push: true
tags: somnath910/statuscode1:latest # Replace with your Docker Hub username and repository
- name: Build and Push Docker image
uses: docker/build-push-action@v2
with:
context: ./backend
file: ./backend/Dockerfile
push: true
tags: somnath910/statuscode1:latest # Replace with your Docker Hub username and repository

- name: Verify Pushed Image
run: docker pull somnath910/statuscode1:latest # Replace with your Docker Hub username and repository
- name: Verify Pushed Image
run: docker pull somnath910/statuscode1:latest # Replace with your Docker Hub username and repository

0 comments on commit 7717859

Please sign in to comment.