✨ 헤더, 네비바, 베타 배너 디자인 수정사항 반영 (#111) #160
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: Deploy | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: SSH Remote Commands | |
uses: appleboy/ssh-action@v1.0.0 | |
with: | |
host: ${{secrets.SSH_HOST}} | |
username: ${{secrets.SSH_USER}} | |
key: ${{secrets.SSH_KEY}} | |
script: | | |
cd ~/csereal-web | |
git pull | |
npm i | |
npm run build | |
pm2 restart csereal_front |