Skip to content

Update rebuild_app.yml #4

Update rebuild_app.yml

Update rebuild_app.yml #4

Workflow file for this run

name: Build and Deploy Arena App with Docker
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
# Step 1: Checkout the repository
- name: Checkout code
uses: actions/checkout@v3
# Step 2: Add SSH key for remote server access
- name: Add SSH key
uses: webfactory/ssh-agent@v0.9.0
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
# Step 3: Clone repository and build the new Docker container on the remote server
- name: Build new Docker container on the remote server
run: |
ssh -t -o StrictHostKeyChecking=no ${{ secrets.REMOTE_USER }}@${{ secrets.REMOTE_HOST }} << 'EOF'
cd /home/${{ secrets.REMOTE_USER }}
cd /arena
docker build -t arena-app-new .
EOF
# Step 4: Stop old container and run new Docker container on the server
- name: Stop old container and run new Docker container on the server
run: |
ssh -t -o StrictHostKeyChecking=no ${{ secrets.REMOTE_USER }}@${{ secrets.REMOTE_HOST }} << 'EOF'
if [ "$(docker ps -q -f name=arena-app)" ]; then
docker stop arena-app
docker rm arena-app
fi
docker run -d --name arena-app -p 7860:7860 arena-app-new
EOF