Skip to content

Commit

Permalink
Modify
Browse files Browse the repository at this point in the history
  • Loading branch information
VinayakVispute committed Aug 17, 2024
1 parent d389498 commit ada0dfe
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build Succeeds on PR

on:
pull_request:
branches:
- NextJs-Migration

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "20"

- name: Checkout Branch
run: git checkout NextJs-Migration && cd client

- name: Install Dependencies
run: npm install

- name: Run Build
run: npm run build
46 changes: 46 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Build and Deploy to Docker Hub

on:
push:
branches:
- NextJs-Migration

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: Checkout Branch
run: git checkout NextJs-Migration && cd client

- name: Build and Push Docker image
uses: docker/build-push-action@v2
with:
context: .
file: ./client/docker/Dockerfile.user
push: true
tags: vinayakvispute/vinayakvispute-devcollub_hub-client:latest # Replace with your Docker Hub username and repository

- name: Verify Pushed Image
run: docker pull vinayakvispute/vinayakvispute-devcollub_hub-client:latest # Replace with your Docker Hub username and repository

- name: Deploy to EC2
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SSH_HOST }}
username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_KEY }}
script: |
sudo echo ============================
sudo docker pull vinayakvispute/vinayakvispute-devcollub_hub-client:latest
sudo docker stop web-app || true
sudo docker rm web-app || true
sudo docker run -d --name web-app -p 3005:3000 vinayakvispute/vinayakvispute-devcollub_hub-client:latest

0 comments on commit ada0dfe

Please sign in to comment.