feat: add CI for naxa-servers #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: Build and Deploy Tasking Manager | |
on: | |
push: | |
branches: | |
- deployment/naxa | |
workflow_dispatch: | |
jobs: | |
deploy: | |
name: Deploy to Server | |
runs-on: ubuntu-latest, self-hosted | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
- name: Configure SSH key | |
run: | | |
mkdir -p ~/.ssh | |
touch ~/.ssh/id_rsa | |
chmod 666 ~/.ssh/id_rsa | |
echo "${{ secrets.SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa | |
chmod 400 ~/.ssh/id_rsa | |
ssh-keyscan ${{ vars.SERVER_IP }} >> ~/.ssh/known_hosts | |
- name: Deploy to Server | |
run: | | |
ssh ${{ vars.SERVER_USERNAME }}@${{ vars.SERVER_IP }} | |
cd /home/ubuntu/Projects/tasking-manager | |
git pull naxa deployment/naxa | |
docker compose up -d --build --force-recreate |