refactor: tool-based RAG pipeline replacing fixed HyDE/inject pipeline #123
This file contains hidden or 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: Deploy to Production Server | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Update and Start Stampy Chat | |
| uses: appleboy/ssh-action@v0.1.2 | |
| with: | |
| host: ${{secrets.PROD_HOST}} | |
| username: ${{secrets.PROD_USERNAME}} | |
| password: ${{secrets.PROD_PASSWORD}} | |
| port: ${{secrets.PROD_PORT}} | |
| script: | | |
| pushd /var/www | |
| ./update.sh | |
| service website restart | |
| service backend restart | |
| service mcp restart | |
| popd |