Skip to content

Commit f81116f

Browse files
committed
Infra: 자동화 배포 워크플로우 수정
- 이미지 빌드 및 푸시 후 60초 대기 후, 배포 진행
1 parent d47f2c9 commit f81116f

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,9 @@ jobs:
7777
runs-on: ubuntu-latest
7878
needs: [ buildImageAndPush ]
7979
steps:
80+
- name: Wait 60 seconds for image to be available
81+
run: sleep 60
82+
8083
- name: AWS SSM Send-Command
8184
uses: peterkimzz/aws-ssm-send-command@master
8285
id: ssm

src/main/java/com/back/global/config/SpringDocConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import org.springframework.context.annotation.Configuration;
88

99
@Configuration
10-
@OpenAPIDefinition(info = @Info(title = "Catfe API 서버", version = "beta", description = "Catfe API 문서입니다."))
10+
@OpenAPIDefinition(info = @Info(title = "Catfe API Server", version = "beta", description = "Catfe API 문서입니다."))
1111
public class SpringDocConfig {
1212

1313
// API 버전별 그룹화

0 commit comments

Comments
 (0)