Skip to content

Commit 5c262b3

Browse files
committed
export registry again from init-release
Signed-off-by: reggie-k <regina.voloshin@codefresh.io>
1 parent 46dbf48 commit 5c262b3

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/init-release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ jobs:
5959
run: |
6060
set -ue
6161
make install-codegen-tools-local
62-
make manifests-local \
63-
IMAGE_REGISTRY=${{ env.IMAGE_REGISTRY }} \
64-
IMAGE_NAMESPACE=${{ env.IMAGE_NAMESPACE }} \
65-
IMAGE_REPOSITORY=${{ env.IMAGE_REPOSITORY }} \
66-
VERSION=${{ inputs.TARGET_VERSION }}
62+
VERSION=${{ inputs.TARGET_VERSION }}
63+
IMAGE_REGISTRY=${{ env.IMAGE_REGISTRY }}
64+
IMAGE_NAMESPACE=${{ env.IMAGE_NAMESPACE }}
65+
IMAGE_REPOSITORY=${{ env.IMAGE_REPOSITORY }}
66+
bash hack/update-manifests.sh
6767
git diff
6868
6969
- name: Generate version compatibility table

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,9 @@ endif
317317

318318
.PHONY: manifests-local
319319
manifests-local:
320-
IMAGE_REGISTRY=$(IMAGE_REGISTRY) IMAGE_NAMESPACE=$(IMAGE_NAMESPACE) IMAGE_REPOSITORY=$(IMAGE_REPOSITORY) ./hack/update-manifests.sh
320+
#DIST_DIR=${DIST_DIR} RERUN_FAILS=5 PACKAGES="./test/e2e" ARGOCD_E2E_RECORD=${ARGOCD_E2E_RECORD} ARGOCD_CONFIG_DIR=$(HOME)/.config/argocd-e2e ARGOCD_GPG_ENABLED=true NO_PROXY=* ./hack/test.sh -timeout $(ARGOCD_E2E_TEST_TIMEOUT) -v -args -test.gocoverdir="$(PWD)/test-results"
321+
322+
IMAGE_REGISTRY=${IMAGE_REGISTRY} IMAGE_NAMESPACE=${IMAGE_NAMESPACE} IMAGE_REPOSITORY=${IMAGE_REPOSITORY} ./hack/update-manifests.sh
321323

322324
.PHONY: manifests
323325
manifests: test-tools-image

0 commit comments

Comments
 (0)