Skip to content

Commit 716feb3

Browse files
committed
Refactor Docker image publishing workflows to use IMAGE_NAME directly from environment variables, removing the dependency on REGISTRY. This change is applied across publish-dashboard.yml, release-dashboard.yml, and release-state-manager.yml for consistency in image tagging.
1 parent 6895255 commit 716feb3

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/publish-dashboard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
id: meta
9797
uses: docker/metadata-action@v5
9898
with:
99-
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
99+
images: ${{ env.IMAGE_NAME }}
100100
tags: |
101101
type=raw,value=beta-latest
102102
type=sha,format=short

.github/workflows/release-dashboard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
id: meta
9595
uses: docker/metadata-action@v5
9696
with:
97-
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
97+
images: ${{ env.IMAGE_NAME }}
9898
tags: |
9999
type=raw,value=latest
100100
type=semver,pattern={{version}}

.github/workflows/release-state-manager.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ jobs:
152152
id: meta
153153
uses: docker/metadata-action@v5
154154
with:
155-
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
155+
images: ${{ env.IMAGE_NAME }}
156156
tags: |
157157
type=raw,value=latest
158158
type=semver,pattern={{version}}

0 commit comments

Comments
 (0)