Skip to content

default to sonnet 3.5 #69

default to sonnet 3.5

default to sonnet 3.5 #69

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/[email protected]
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
popd