fix: 채점결과에 stderr 전송 안하도록 수정, 채점 완료시 bool 값 전송으로 수정 #39
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: be-deploy | |
on: | |
push: | |
branches: | |
- be-dev | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: SSH-be-deploy | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.NCP_HOST }} | |
username: ${{ secrets.NCP_USERNAME }} | |
password: ${{ secrets.NCP_PASSWORD }} | |
port: ${{ secrets.NCP_PORT }} | |
script: | | |
cd /home/be/web12-algo-with-me/ | |
git pull | |
cd be | |
./build-all | |
./run-all-background |