Skip to content

Update main.yml

Update main.yml #18

Workflow file for this run

name: CI/CD Pipeline for DigitalOcean Droplet
on:
push:
branches:
- cicd
jobs:
redeploy:
runs-on: ubuntu-latest
steps:
# Step 1: Checkout the code
- name: Checkout code
uses: actions/checkout@v3
# Step 2: Set up SSH for DigitalOcean access
- name: Set up SSH
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_KEY }}
# Step 3: Determine which servers had changes
- name: Check changes in files
id: check_files
run: |
# Initialize change flags
CHATBOT_MAIN_CHANGED=false
CHATBOT_PROCESS_CHANGED=false
# Get list of changed files
CHANGED_FILES=$(git diff --name-only ${{ github.event.before }} ${{ github.sha }})
# Check if any changed files are in the chatbotmain directory
if echo "$CHANGED_FILES" | grep -q '^chatbotmain/'; then
CHATBOT_MAIN_CHANGED=true
fi
# Check if any changed files are in the chatbotprocess directory
if echo "$CHANGED_FILES" | grep -q '^chatbotprocess/'; then
CHATBOT_PROCESS_CHANGED=true
fi
# Set the output values using environment variables
echo "main_changed=${CHATBOT_MAIN_CHANGED}" >> $GITHUB_ENV
echo "process_changed=${CHATBOT_PROCESS_CHANGED}" >> $GITHUB_ENV
# Step 4: Deploy to the affected servers (both chatbotmain and chatbotprocess if needed)
- name: Deploy to DigitalOcean
run: |
ssh -o StrictHostKeyChecking=no ubuntu@${{ secrets.SSH_HOST }} << EOF
# Check if chatbotmain needs to be redeployed
if [ "$main_changed" = "true" ]; then
CONTAINER_ID=\$(sudo docker ps -q --filter "name=chatbotmain")
if [ "\$CONTAINER_ID" ]; then
echo "Stopping and removing container chatbotmain..."
sudo docker stop \$CONTAINER_ID
sudo docker rm \$CONTAINER_ID
IMAGE_ID=\$(sudo docker images -q chatbotmain)
if [ "\$IMAGE_ID" ]; then
echo "Removing image chatbotmain..."
sudo docker rmi -f \$IMAGE_ID
fi
fi
echo "Rebuilding and running container chatbotmain..."
cd /path/to/chatbotmain # Navigate to the correct directory if necessary
sudo docker build -t chatbotmain .
sudo docker run -d -p 8000:8000 chatbotmain
fi
# Check if chatbotprocess needs to be redeployed
if [ "$process_changed" = "true" ]; then
CONTAINER_ID=\$(sudo docker ps -q --filter "name=chatbotprocess")
if [ "\$CONTAINER_ID" ]; then
echo "Stopping and removing container chatbotprocess..."
sudo docker stop \$CONTAINER_ID
sudo docker rm \$CONTAINER_ID
IMAGE_ID=\$(sudo docker images -q chatbotprocess)
if [ "\$IMAGE_ID" ]; then
echo "Removing image chatbotprocess..."
sudo docker rmi -f \$IMAGE_ID
fi
fi
echo "Rebuilding and running container chatbotprocess..."
cd /path/to/chatbotprocess # Navigate to the correct directory if necessary
sudo docker build -t chatbotprocess .
sudo docker run -d -p 9000:9000 chatbotprocess
fi
EOF
env:
main_changed: ${{ steps.check_files.outputs.main_changed }}
process_changed: ${{ steps.check_files.outputs.process_changed }}