Skip to content

cd pipeline mod1

cd pipeline mod1 #5

Workflow file for this run

name: Build and Push Docker Images
on:
push:
branches:
- main
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 DB Handler Image
uses: docker/build-push-action@v2
with:
context: .
file: ./docker/Dockerfile.db
push: true
tags: dhanush2313/cicd:db-latest
- name: Build and Push User App Image
uses: docker/build-push-action@v2
with:
context: .
file: ./docker/Dockerfile.userapp
push: true
tags: dhanush2313/cicd:user-app-latest
- name: Build and Push Webhook Handler Image
uses: docker/build-push-action@v2
with:
context: .
file: ./docker/Dockerfile.webhook
push: true
tags: dhanush2313/cicd:webhook-handler-latest