-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into event-calender-fix
- Loading branch information
Showing
2 changed files
with
27 additions
and
4 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,25 @@ | ||
name: Push To Server | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
name: deploy on remote | ||
steps: | ||
- uses: appleboy/[email protected] | ||
with: | ||
host: ${{ secrets.DC_HOST }} | ||
username: ${{ secrets.DC_USER }} | ||
password: ${{ secrets.DC_PASS }} | ||
script: | | ||
cd ~/tpc_portal/tpc-frontend | ||
git pull origin main | ||
docker stop tpc_portal-frontend-1 | ||
docker rm tpc_portal-frontend-1 | ||
docker rmi tpc_portal-frontend || true | ||
cd .. | ||
docker compose up -d |
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