fix: Delete maxLength fo chat Input #1
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: Docker Compose Update | |
on: | |
push: | |
branches: [develop] | |
paths: | |
- 'docker-compose.yml' | |
- '.github/workflows/docker-compose-deploy.yml' | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Deploy to Server | |
uses: appleboy/[email protected] | |
with: | |
host: ${{ secrets.SSH_HOST }} | |
username: mira | |
key: ${{ secrets.SSH_PRIVATE_KEY }} | |
script: | | |
cd /home/mira/web30-stop-troublepainter | |
export DOCKERHUB_USERNAME=${{ secrets.DOCKERHUB_USERNAME }} | |
docker compose pull | |
docker compose up -d |