We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f219a8b commit ab0529fCopy full SHA for ab0529f
1 file changed
.github/workflows/deploy.yml
@@ -3,7 +3,10 @@ name: Docker 배포
3
on:
4
push:
5
branches:
6
- - minseonjae # 트리거할 브랜치 (예: main or minseonjae)
+ - minseonjae # 트리거할 브랜치 (예: main)
7
+ pull_request:
8
+ branches:
9
+ - minseonjae # Pull Request를 트리거할 브랜치 (예: main)
10
11
jobs:
12
build:
@@ -23,6 +26,10 @@ jobs:
23
26
- name: Next.js 앱 빌드
24
27
run: npm run build
25
28
29
+ - name: Docker Buildx 설치
30
+ id: buildx
31
+ uses: docker/setup-buildx-action@v3
32
+
33
- name: Docker Hub 로그인
34
uses: docker/login-action@v2
35
with:
0 commit comments