Update main.yml #4
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 GraphRAG | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install SSH and sshpass | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y sshpass git | |
- name: Deploy to Remote Server | |
env: | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
SERVER_SSH_KEY: ${{ secrets.SERVER_SSH_KEY }} | |
SERVER_HOST: ${{ secrets.SERVER_HOST }} | |
SERVER_USER: ${{ secrets.SERVER_USER }} | |
REPO_TOKEN: ${{ secrets.REPO_TOKEN }} | |
run: | | |
# SSH into the server using password authentication and deploy | |
sshpass -p "$SERVER_SSH_KEY" ssh -T -o StrictHostKeyChecking=no $SERVER_USER@$SERVER_HOST << 'EOF' | |
# Clone the repository (use token for authentication with GitHub) | |
if [ ! -d "GraphRAG" ]; then | |
git clone https://$REPO_TOKEN@github.com/fatemenajafi135/GraphRAG.git | |
fi | |
cd GraphRAG | |
git pull | |
# Ensure environment variables are set | |
export OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }} | |
# Build and deploy the Docker container using docker-compose | |
docker-compose down | |
docker-compose up --build -d | |
EOF | |
- name: Verify Deployment | |
env: | |
SERVER_SSH_KEY: ${{ secrets.SERVER_SSH_KEY }} | |
run: | | |
# Check running containers on the server | |
sshpass -p "$SERVER_SSH_KEY" ssh -T -o StrictHostKeyChecking=no $SERVER_USER@$SERVER_HOST "docker ps" |