Skip to content

Commit

Permalink
added deploing to docker
Browse files Browse the repository at this point in the history
  • Loading branch information
Prashant-flick committed Sep 30, 2024
1 parent b4f1a03 commit 8064d54
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build and Deploy to Docker Hub

on:
push:
branches:
- master

jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- 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: Build and PUSH Docker image
uses: docker/build-push-action@v2
with:
context: .
file: ./docker/Dockerfile.user
push: true
tags: prashantflick/user-paytm:latest

# - name: Verify Pushed Image
# run: docker pull prashantflick/user-paytm:latest

0 comments on commit 8064d54

Please sign in to comment.