changes in deploy.yml #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI/CD Deployment | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout the current repository | |
- name: Checkout backend repo | |
uses: actions/checkout@v2 | |
# # Set up Docker | |
# - name: Set up Docker Buildx | |
# uses: docker/setup-buildx-action@v1 | |
# # Log in to Docker Hub | |
# - name: Log in to Docker Hub | |
# uses: docker/login-action@v3 | |
# with: | |
# username: ${{ secrets.DOCKER_USERNAME }} | |
# password: ${{ secrets.DOCKER_ACCESS_TOKEN }} | |
# # Build the Docker image | |
# - name: Build Docker Image | |
# run: | | |
# echo "Building Docker image..." | |
# docker build -t ${{ secrets.DOCKER_USERNAME }}/talker:latest . | |
# echo "Docker image built successfully." | |
# # Push the Docker image to Docker Hub | |
# - name: Push Docker Image | |
# run: | | |
# echo "Pushing Docker image to Docker Hub..." | |
# docker push ${{ secrets.DOCKER_USERNAME }}/talker:latest | |
# echo "Docker image pushed successfully." | |
# Deploy to VPS | |
- name: Deploy to VPS | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.VPS_HOST }} | |
username: ${{ secrets.VPS_USERNAME }} | |
key: ${{ secrets.VPS_SSH_KEY }} | |
debug: true | |
script: | | |
echo "Starting deployment to VPS..." | |
echo "Copying docker-compose.yml to VPS..." | |
pwd | |
ls -la | |
echo "Continuing with deployment..." | |
echo "Copying docker-compose.yml and nginx.conf to VPS..." | |
scp -o StrictHostKeyChecking=no ./docker-compose.yml ./nginx/default.conf ${{ secrets.VPS_USERNAME }}@${{ secrets.VPS_HOST }}:/home/${{ secrets.VPS_USERNAME }}/app/ | |
echo "Restarting Docker containers on the VPS..." | |
ssh -o StrictHostKeyChecking-no ${{ secrets.VPS_USERNAME }}@${{ secrets.VPS_HOST }} ' | |
cd /home/${{ secrets.VPS_USERNAME }}/app && | |
docker-compose down && | |
docker-compose pull && | |
docker-compose up -d --build && | |
echo "Docker containers restarted successfully." | |
' |