Skip to content

Commit 12af1b0

Browse files
authored
chore(ci): fix docker release repo (#17918)
1 parent ff47bd7 commit 12af1b0

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/cloud.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,11 @@ jobs:
110110
env:
111111
REPO_DOCKERHUB: ${{ steps.login.outputs.dockerhub_repo }}
112112
REPO_ECR: ${{ steps.login.outputs.ecr_repo }}
113-
REPO_GHCR: ${{ steps.login.outputs.ghcr_repo }}
114113
VERSION: ${{ steps.prepare.outputs.tag }}
115114
with:
116115
script: |
117-
const { VERSION, REPO_DOCKERHUB, REPO_ECR, REPO_GHCR } = process.env;
118-
const repos = [REPO_DOCKERHUB, REPO_ECR, REPO_GHCR];
116+
const { VERSION, REPO_DOCKERHUB, REPO_ECR } = process.env;
117+
const repos = [REPO_DOCKERHUB, REPO_ECR];
119118
let tags = [];
120119
for (const repo of repos) {
121120
tags.push(`${repo}:${VERSION}`);

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -373,13 +373,12 @@ jobs:
373373
env:
374374
REPO_DOCKERHUB: ${{ steps.login.outputs.dockerhub_repo }}
375375
REPO_ECR: ${{ steps.login.outputs.ecr_repo }}
376-
REPO_GHCR: ${{ steps.login.outputs.ghcr_repo }}
377376
VERSION: ${{ needs.create_release.outputs.version }}
378377
TYPE: ${{ needs.create_release.outputs.type }}
379378
with:
380379
script: |
381-
const { VERSION, TYPE, REPO_DOCKERHUB, REPO_ECR, REPO_GHCR } = process.env;
382-
const repos = [REPO_DOCKERHUB, REPO_ECR, REPO_GHCR];
380+
const { VERSION, TYPE, REPO_DOCKERHUB, REPO_ECR } = process.env;
381+
const repos = [REPO_DOCKERHUB, REPO_ECR];
383382
let tags = [];
384383
for (const repo of repos) {
385384
tags.push(`${repo}:${VERSION}`);

0 commit comments

Comments
 (0)