From 767cf6a6f4c994ead231c579f93756730686af05 Mon Sep 17 00:00:00 2001 From: Tom Tankilevitch <59158507+Tankilevitch@users.noreply.github.com> Date: Sun, 22 Jan 2023 10:15:17 +0200 Subject: [PATCH] [CI] Fix build workflow not outputs registries to `GITHUB_OUTPUT` (#2967) --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1b2f14af99..01c2ab9e13 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -103,7 +103,7 @@ jobs: echo ${input_docker_repo:-`echo $default_docker_repo`})" >> $GITHUB_OUTPUT echo "mlrun_docker_registries=$( \ input_docker_registries=${{ github.event.inputs.docker_registries }} && \ - echo ${input_docker_registries:-ghcr.io/})" + echo ${input_docker_registries:-ghcr.io/})" >> $GITHUB_OUTPUT echo "mlrun_cache_date=$(date +%s)" >> $GITHUB_OUTPUT - name: Docker login # all suffixed with "| true" to allow failures if secrets are not defined (fork)