Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.

Commit 556e916

Browse files
authored
Merge pull request #581 from cprivitere/registries
🐛 Fix the registry variable in the release and ci yamls
2 parents d41d879 + 9906996 commit 556e916

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
GHCR_REGISTRY: ghcr.io/${{ github.repository_owner }}
1515
DOCKER_REGISTRY: ${{ secrets.DOCKER_ORG }}
1616
QUAY_REGISTRY: quay.io/${{ secrets.QUAY_ORG }}
17-
REGISTRY: ${{ env.QUAY_REGISTRY }}
17+
REGISTRY: $QUAY_REGISTRY
1818

1919
jobs:
2020
validate:
@@ -111,7 +111,7 @@ jobs:
111111
context: .
112112
push: true
113113
tags: ${{ steps.docker_meta.outputs.tags }}
114-
labels: ${{ steps.docker_meta.outpus.labels }}
114+
labels: ${{ steps.docker_meta.outputs.labels }}
115115
cache-from: type=gha
116116
cache-to: type=gha,mode=max
117117
platforms: linux/amd64, linux/arm64, linux/arm/v7

.github/workflows/release.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ env:
99
GHCR_REGISTRY: ghcr.io/${{ github.repository_owner }}
1010
DOCKER_REGISTRY: ${{ secrets.DOCKER_ORG }}
1111
QUAY_REGISTRY: quay.io/${{ secrets.QUAY_ORG }}
12-
REGISTRY: ${{ env.QUAY_REGISTRY }}
1312

1413
jobs:
1514

@@ -89,7 +88,7 @@ jobs:
8988
build-args: |
9089
LDFLAGS=${{ env.DOCKER_BUILD_LDFLAGS }}
9190
tags: ${{ steps.docker_meta.outputs.tags }}
92-
labels: ${{ steps.docker_meta.outpus.labels }}
91+
labels: ${{ steps.docker_meta.outputs.labels }}
9392
cache-from: type=gha
9493
cache-to: type=gha,mode=max
9594
platforms: linux/amd64, linux/arm64, linux/arm/v7

0 commit comments

Comments
 (0)