Skip to content

Commit

Permalink
Ci/Cd setup
Browse files Browse the repository at this point in the history
  • Loading branch information
subhanahujha007 committed Jul 6, 2024
1 parent 00da6bf commit 761f5f2
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:
- 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 Docker image
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: true
tags: subhanshujha007/arcade:arcade_game # Replace with your Docker Hub username and repository

- name: Verify Pushed Image
run: docker pull subhanshujha007/arcade:arcade_game # Replace with your Docker Hub username and repository

0 comments on commit 761f5f2

Please sign in to comment.