Skip to content

feat: added const values to happyjump #38

feat: added const values to happyjump

feat: added const values to happyjump #38

Workflow file for this run

name: Deploy
on:
push:
branches: [ "main" ]
jobs:
build:
uses: ./.github/workflows/test.yml
deploy:
runs-on: ubuntu-latest
needs: [ build ]
steps:
- name: Deploy
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.REMOTE_HOST }}
username: ${{ secrets.REMOTE_USER }}
port: ${{ secrets.REMOTE_PORT }}
key: ${{ secrets.SSH_PRIVATE_KEY }}
script: |
cd /home/project/rag-2-frontend
git checkout main
git pull
cd /home/project
docker compose up --build -d
echo "$(date): frontend deployed successfully" >> deploy-log.txt
docker system prune -f