Skip to content

Merge branch 'main' of https://github.com/sujal-goswami/YT-Backend #1

Merge branch 'main' of https://github.com/sujal-goswami/YT-Backend

Merge branch 'main' of https://github.com/sujal-goswami/YT-Backend #1

Workflow file for this run

name: Build and Publish Docker Image
on:
push:
branches:
- main
jobs:
build-and-publish:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: true
tags: sujalgoswami/boredtube:latest