From 9f569a0f4eab8870e1757571992cf882f9192fbe Mon Sep 17 00:00:00 2001 From: Joao Pereira Date: Wed, 9 Feb 2022 14:52:28 -0600 Subject: [PATCH] Stop using ttl.sh as the registry for windows Use instead the windows registry version Signed-off-by: Joao Pereira --- .github/workflows/gh-test.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/gh-test.yml b/.github/workflows/gh-test.yml index 7d247421c..e1e4305b9 100644 --- a/.github/workflows/gh-test.yml +++ b/.github/workflows/gh-test.yml @@ -51,13 +51,15 @@ jobs: export PATH="$GOPATH/bin:$PATH" cd src/github.com/${{ github.repository }} - export IMGPKG_E2E_IMAGE="ttl.sh/github-action-test-relocation-$GITHUB_RUN_ID" - export IMGPKG_E2E_RELOCATION_REPO="ttl.sh/github-action-imgpkg-test-$GITHUB_RUN_ID" + export IMGPKG_E2E_IMAGE="localhost:5000/github-action-test-relocation-$GITHUB_RUN_ID" + export IMGPKG_E2E_RELOCATION_REPO="localhost:5000/github-action-imgpkg-test-$GITHUB_RUN_ID" go install github.com/sigstore/cosign/cmd/cosign@v0.5.0 alias cosign=cosign.exe + docker run -d -p 5000:5000 --restart=always --name registry ghcr.io/vmware-tanzu/carvel-imgpkg/registry-windows:2.8.0-2022 + export IMGPKG_BINARY_EXT=".exe" ./hack/test-all.sh - ' \ No newline at end of file + '