forked from hotosm/tasking-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
128679d
commit 8c8bdba
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
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
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, 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 |