Skip to content

Commit

Permalink
comment the deploy file and modified build.yml file
Browse files Browse the repository at this point in the history
  • Loading branch information
Bickyyadav committed Sep 29, 2024
1 parent 65bbb1f commit c2adf5b
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 39 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ jobs:

- name: Install Dependencies
run: npm install

- name: Generate prisma client
run: npm run db:generate

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

on:
push:
branches:
- master
# on:
# push:
# branches:
# - master

jobs:
build-and-push:
runs-on: ubuntu-latest
steps:
- name: Check Out Repo
uses: actions/checkout@v2
# 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: 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: 100xdevs/week-18-class:latest # Replace with your Docker Hub username and repository
# - name: Build and Push Docker image
# uses: docker/build-push-action@v2
# with:
# context: .
# file: ./docker/Dockerfile.user
# push: true
# tags: 100xdevs/week-18-class:latest # Replace with your Docker Hub username and repository

- name: Verify Pushed Image
run: docker pull 100xdevs/week-18-class:latest # Replace with your Docker Hub username and repository
# - name: Verify Pushed Image
# run: docker pull 100xdevs/week-18-class: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 docker pull 100xdevs/week-18-class:latest
sudo docker stop web-app || true
sudo docker rm web-app || true
sudo docker run -d --name web-app -p 3005:3000 100xdevs/week-18-class:latest
# - name: Deploy to EC2
# uses: appleboy/ssh-action@master
# with:
# host: ${{ secrets.SSH_HOST }}
# username: ${{ secrets.SSH_USERNAME }}
# key: ${{ secrets.SSH_KEY }}
# script: |
# sudo docker pull 100xdevs/week-18-class:latest
# sudo docker stop web-app || true
# sudo docker rm web-app || true
# sudo docker run -d --name web-app -p 3005:3000 100xdevs/week-18-class:latest

0 comments on commit c2adf5b

Please sign in to comment.