Skip to content

fix: KAKAO_URI 변경 #13

fix: KAKAO_URI 변경

fix: KAKAO_URI 변경 #13

Workflow file for this run

name: Deploy Backend on Integration Server
on:
push:
branches:
- feature/**
- feat/**
env:
HOST: ${{ secrets.HOST }}
USERNAME: ${{ secrets.USERNAME }}
KEY: ${{ secrets.SSH_KEY }}
PORT: ${{ secrets.PORT }}
INSTANCE_PATH: ./backend-intg
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Test
run: |
echo "test is skipped"
deploy:
runs-on: ubuntu-latest
if: github.ref == format('refs/heads/{0}', vars.INTG_BRANCH)
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Send
uses: appleboy/scp-action@master
with:
host: ${{ env.HOST }}
username: ${{ env.USERNAME }}
key: ${{ env.KEY }}
port: ${{ env.PORT }}
source: "."
target: ${{ env.INSTANCE_PATH }}
- name: Deploy
uses: appleboy/ssh-action@master
with:
host: ${{ env.HOST }}
username: ${{ env.USERNAME }}
key: ${{ env.KEY }}
port: ${{ env.PORT }}
script: |
cd ${{ env.INSTANCE_PATH }}
make build-intg