-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(CI): add
Backend Deploy
workflow
- Loading branch information
Showing
1 changed file
with
29 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,29 @@ | ||
name: Backend Deploy | ||
|
||
on: | ||
push: | ||
branches: [main, deploy-testnet] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
deploy-testnet: | ||
environment: testnet | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Deploy to testnet | ||
uses: appleboy/[email protected] | ||
with: | ||
host: ${{ secrets.SSH_HOST }} | ||
username: ${{ secrets.SSH_USERNAME }} | ||
key: ${{ secrets.SSH_PRIVATE_KEY }} | ||
script: | | ||
cd ${{ secrets.SSH_WORK_DIR }} | ||
git status | ||
git fetch origin main | ||
git checkout origin/main | ||
git status | ||
echo ${{ secrets.SSH_PASSWORD }} | sudo -S docker compose ps | ||
echo ${{ secrets.SSH_PASSWORD }} | sudo -S docker compose build | ||
echo ${{ secrets.SSH_PASSWORD }} | sudo -S docker compose up -d | ||
echo ${{ secrets.SSH_PASSWORD }} | sudo -S docker compose ps |