From c614484ea38ef7160290e4cebd410181f434983a Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Mon, 6 Nov 2023 23:05:27 +0530 Subject: [PATCH] Set env.REGISTRY to be quay.io correctly Follow-up to https://github.com/jupyterhub/jupyterhub/pull/4612, which is currently making builds fail --- .github/workflows/release.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 84ac6659c7..88983cd951 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -97,8 +97,7 @@ jobs: - name: Should we push this image to a public registry? run: | if [ "${{ startsWith(github.ref, 'refs/tags/') || (github.ref == 'refs/heads/main') }}" = "true" ]; then - # Empty => Docker Hub - echo "REGISTRY=" >> $GITHUB_ENV + echo "REGISTRY=quay.io/" >> $GITHUB_ENV else echo "REGISTRY=localhost:5000/" >> $GITHUB_ENV fi