Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MohanKrishnaGR authored Jun 26, 2024
1 parent 83512c5 commit 59c770c
Showing 1 changed file with 0 additions and 31 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1 @@
name: CI/CD Pipeline

on:
push:
branches:
- main

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up SSH
uses: webfactory/ssh-agent@v0.5.3
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Deploy to EC2
run: |
ssh -o StrictHostKeyChecking=no ec2-user@your-ec2-instance-public-dns << 'EOF'
docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD
docker pull mohankrishnagr/infosys_text-summarization:final
docker stop $(docker ps -a -q)
docker rm $(docker ps -a -q)
docker run -d -p 8000:8000 mohankrishnagr/infosys_text-summarization:final
EOF
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}

0 comments on commit 59c770c

Please sign in to comment.