Skip to content

Commit 03cd2d9

Browse files
committed
CLAP-104 CI/CD: 도커 레지스트리 연결 시간 연장
<footer> - #55
1 parent af8f272 commit 03cd2d9

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/dev-cd.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ jobs:
1515
DEV-CD:
1616
if: github.event.pull_request.merged == true
1717
runs-on: ubuntu-latest
18+
env:
19+
DOCKER_CLIENT_TIMEOUT: 600
20+
COMPOSE_HTTP_TIMEOUT: 600
1821
steps:
1922
- uses: actions/checkout@v4
2023
- name: 'Set up jdk'

.github/workflows/release-cd.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ permissions:
1212
jobs:
1313
Release-CD:
1414
runs-on: ubuntu-latest
15+
env:
16+
DOCKER_CLIENT_TIMEOUT: 600
17+
COMPOSE_HTTP_TIMEOUT: 600
1518
steps:
1619
- uses: actions/checkout@v4
1720

@@ -56,7 +59,7 @@ jobs:
5659
run: |
5760
envsubst < ./taskflow.yaml
5861
env:
59-
IMAGE_TAG: ${{ env.IMAGE_TAG }}
62+
IMAGE_TAG: ${{ steps.version.outputs.VERSION }}
6063
# deploy
6164
- name: Transport taskflow.yaml to kubectl server
6265
uses: appleboy/scp-action@master

0 commit comments

Comments
 (0)