From bc878aa5ed8ab54eed4d70af49751a9f5c2a065c Mon Sep 17 00:00:00 2001 From: Gerrod Ubben Date: Thu, 31 Oct 2024 17:40:55 -0400 Subject: [PATCH] Test --- .github/actions/build_image/action.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/actions/build_image/action.yml b/.github/actions/build_image/action.yml index d44cf0cb..2dc4fd87 100644 --- a/.github/actions/build_image/action.yml +++ b/.github/actions/build_image/action.yml @@ -52,9 +52,11 @@ runs: - name: Find latest ui version if: inputs.latest_ui != 'false' run: | - URL=$(http --verify no --ignore-netrc "https://api.github.com/repos/pulp/pulp-ui/releases/latest" | jq -r '.assets[0].browser_download_url') - echo "Found UI url ${URL}" - echo "BUILD_UI_ARG=--build-arg PULP_UI_URL=${URL}" >> $GITHUB_ENV + echo "Requesting the latest pulp-ui release" + http --print=Hhb --verify=no GET https://api.github.com/repos/pulp/pulp-ui/releases/latest +# URL=$(http --verify no --ignore-netrc "https://api.github.com/repos/pulp/pulp-ui/releases/latest" | jq -r '.assets[0].browser_download_url') +# echo "Found UI url ${URL}" +# echo "BUILD_UI_ARG=--build-arg PULP_UI_URL=${URL}" >> $GITHUB_ENV shell: bash - name: Build images