-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (35 loc) · 1.06 KB
/
Dev_CD_API.yml
File metadata and controls
39 lines (35 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: gss-api-app-dev-cd
on:
workflow_dispatch:
inputs:
tag:
description: '배포할 api app 서비스 버전을 입력합니다.'
required: true
jobs:
trigger:
name: 개발 환경 배포
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Custom Deployment Task
env:
TAG: ${{ inputs.tag }}
run: |
echo "Image Name: $IMAGE_NAME"
echo "Tag: $TAG"
- name: Excuting remote ssh commands
uses: appleboy/ssh-action@v1.0.3
env:
TAG: ${{ inputs.tag }}
with:
host: ${{ secrets.REMOTE_IP }}
username: ${{ secrets.REMOTE_USER }}
key: ${{ secrets.REMOTE_PRIVATE_KEY }}
envs: TAG
script: |
aws ecr get-login-password --region ap-northeast-2 | docker login --username AWS --password-stdin 493807290209.dkr.ecr.ap-northeast-2.amazonaws.com
cd /home/ec2-user/deploy/api/dev
sh ./deploy.sh $TAG