retrty flows #7
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: Deploy to Production Server | |
env: | |
SERVER_USER: 'swissh' | |
SERVER_IP: 'swis.sh' | |
DEPLOY_PATH: '/home/swissh/swis.sh/' | |
DOCKER_IMAGE: 'swissh-app' | |
CONTAINER_PORT: '8091' | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Build Docker image | |
run: | | |
DOCKER_BUILDKIT=1 docker build \ | |
--progress=plain \ | |
--no-cache \ | |
-t ${{ env.DOCKER_IMAGE }} . | |
- name: Set up SSH agent | |
uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- name: Add SSH Key to Known Hosts | |
run: | | |
mkdir -p ~/.ssh | |
echo "$(ssh-keyscan -t rsa ${{ env.SERVER_IP }} 2>/dev/null)" >> ~/.ssh/known_hosts | |
- name: Save Docker image | |
run: docker save ${{ env.DOCKER_IMAGE }} | gzip > image.tar.gz | |
- name: Copy Docker image to server | |
run: | | |
scp image.tar.gz ${{ env.SERVER_USER }}@${{ env.SERVER_IP }}:${{ env.DEPLOY_PATH }}/ | |
- name: Deploy using Docker | |
run: | | |
ssh ${{ env.SERVER_USER }}@${{ env.SERVER_IP }} << 'EOF' | |
set -e | |
cd ${{ env.DEPLOY_PATH }} | |
# Load the new image | |
docker load < image.tar.gz | |
# Stop and remove the old container | |
docker stop ${{ env.DOCKER_IMAGE }} || true | |
docker rm ${{ env.DOCKER_IMAGE }} || true | |
# Run the new container with port 8091 mapped to container's port 80 | |
docker run -d \ | |
--name ${{ env.DOCKER_IMAGE }} \ | |
-p 8091:80 \ | |
--restart unless-stopped \ | |
${{ env.DOCKER_IMAGE }} | |
# Verify the container is running | |
if ! docker ps | grep -q ${{ env.DOCKER_IMAGE }}; then | |
echo "Container failed to start" | |
docker logs ${{ env.DOCKER_IMAGE }} | |
exit 1 | |
fi | |
# Clean up | |
rm image.tar.gz | |
docker image prune -f | |
EOF |