Skip to content

Build and push docker image to docker hub #1

Build and push docker image to docker hub

Build and push docker image to docker hub #1

Workflow file for this run

name: Build and Deploy to Docker Hub

Check failure on line 1 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

`jobs` is not a valid event name
on:
push:
branch:
- main
jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Check our 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: sudhnashu2911/payment-pe:latest
- name: Verify Pushed Image
run: docker pull sudhnashu2911/payment-pe:latest