add assests prefx (#175) #29
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: 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 |