test ssl #20
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 | |
# 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." | |
# Copy files to VPS | |
- name: Copy files to VPS | |
uses: appleboy/scp-action@master | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
source: ./nginx/default.conf, ./docker-compose.yml | |
target: /home/${{ secrets.USERNAME }}/app | |
debug: true | |
# Deploy to VPS | |
- name: Deploy to VPS | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.HOST }} | |
username: ${{ secrets.USERNAME }} | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
debug: true | |
script: | | |
set -e | |
echo "Starting deployment to VPS..." | |
cd /home/${{ secrets.USERNAME }}/app | |
docker compose down | |
docker compose pull | |
docker compose up --build | |
echo "Deployment completed successfully." | |
' |