Merge pull request #62 from naxa-developers/fix/task-validation #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: Build and Deploy Tasking Manager Backend | |
on: | |
push: | |
branches: | |
- deployment/naxa | |
paths: | |
- "backend/**" | |
workflow_dispatch: | |
jobs: | |
deploy: | |
name: Deploy to Server | |
runs-on: [ubuntu-latest] | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
- name: Recreate Services | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ vars.SERVER_IP }} | |
username: ${{ vars.SERVER_USERNAME }} | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
command_timeout: 20m | |
script: | | |
echo '==In Server==' | |
echo '==Building Backend==' | |
cd /home/ubuntu/Projects/tasking-manager | |
git pull naxa deployment/naxa | |
docker compose build --no-cache backend | |
docker compose up -d --force-recreate |