We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dca5e90 commit 5160921Copy full SHA for 5160921
.github/workflows/deploy.yml
@@ -78,7 +78,15 @@ jobs:
78
runs-on: ubuntu-latest
79
steps:
80
- uses: actions/checkout@v4
81
+
82
83
+ # GHCR 로그인
84
+ - name: 레지스트리 로그인
85
+ uses: docker/login-action@v3
86
+ with:
87
+ registry: ghcr.io
88
+ username: ${{ github.actor }}
89
+ password: ${{ secrets.GITHUB_TOKEN }}
90
# 빌드 컨텍스트에 .env 생성 (비어있어도 실패하지 않게)
91
- name: .env 파일 생성
92
env:
@@ -91,13 +99,7 @@ jobs:
99
- name: Docker Buildx 설치
100
uses: docker/setup-buildx-action@v3
93
101
94
- # GHCR 로그인
95
- - name: 레지스트리 로그인
96
- uses: docker/login-action@v3
97
- with:
98
- registry: ghcr.io
- username: ${{ github.actor }}
- password: ${{ secrets.GITHUB_TOKEN }}
102
103
104
# 저장소 소유자명을 소문자로 (GHCR 경로 표준화)
105
- name: set lower case owner name
0 commit comments