Skip to content

Commit

Permalink
feat: add CI for naxa-servers
Browse files Browse the repository at this point in the history
  • Loading branch information
nischalstha9 committed Oct 3, 2023
1 parent 128679d commit 0de11cb
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Build and Deploy Tasking Manager

on:
push:
branches:
- deployment/naxa
workflow_dispatch:

jobs:
deploy:
name: Deploy to Server
runs-on: [ubuntu-latest]
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

0 comments on commit 0de11cb

Please sign in to comment.