This repository has been archived by the owner on Jun 15, 2024. It is now read-only.
fix: 배포자동화 #8
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
on: | |
push: | |
branches: [release] | |
pull_request: | |
branches: [release] | |
types: [closed] | |
jobs: | |
build: | |
if: ${{ github.event.pull_request.merged }} | |
name: synchronization between local and remote repository | |
runs-on: ubuntu-latest | |
# 경고 무시 | |
env: | |
CI: false | |
steps: | |
- name: checkout | |
uses: actions/checkout@v1 | |
- name: executing remote ssh commands with ssh key | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.DEPLOY_SERVER_HOST }} | |
username: ${{ secrets.DEPLOY_SERVER_USERNAME }} | |
password: ${{ secrets.DEPLOY_SERVER_PASSWORD }} | |
port: ${{ secrets.DEPLOY_SERVER_PORT }} | |
script: | | |
cd stocodi-web | |
git checkout release | |
git pull origin release | |
sudo ./deploy.sh |