Skip to content

changed the favicon #24

changed the favicon

changed the favicon #24

Workflow file for this run

name: Deploy chat-docs-library to EC2
on:
push:
branches:
- prod
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Install Dependencies
run: yarn
- name: Build Application
run: yarn build
- name: Deploy to EC2
uses: appleboy/ssh-action@v1.0.3
with:
host: ${{ secrets.EC2_IP_ADDRESS }}
username: ${{ secrets.EC2_USERNAME }}
key: ${{ secrets.EC2_PRIVATE_KEY }}
script: |
cd chat-docs-library
git pull origin prod
pnpm
# pnpm run build
# pm2 restart chat-docs-library
# pm2 start npm --name chat-docs-library -- run start -- -p 3000