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 f4a0a58 commit e4be1b0Copy full SHA for e4be1b0
.github/workflows/CI-CD_Pipeline.yml
@@ -152,11 +152,13 @@ jobs:
152
if: github.ref == 'refs/heads/main' # ✅ main 브랜치일 때만 실행
153
env:
154
REGISTRY: ghcr.io
155
- IMAGE_PREFIX: ${{ github.repository }}
156
157
steps:
158
- uses: actions/checkout@v4
159
+ - name: Set lowercase repo name
160
+ run: echo "IMAGE_PREFIX=${GITHUB_REPOSITORY,,}" >> $GITHUB_ENV
161
+
162
- name: Download backend jar
163
uses: actions/download-artifact@v4
164
with:
0 commit comments