From 78e9a88abab2a2f2736353d13133883808d6c3cb Mon Sep 17 00:00:00 2001 From: Will Smith Date: Wed, 18 Oct 2023 05:47:13 +0100 Subject: [PATCH] Fix rad cli download in public push (#39) (cherry picked from commit 54c77b7d78735a8f8ad7c636b10a533038a3e7d4) --- .github/workflows/publish-recipes.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-recipes.yaml b/.github/workflows/publish-recipes.yaml index 6c5ba1b..8c4f250 100644 --- a/.github/workflows/publish-recipes.yaml +++ b/.github/workflows/publish-recipes.yaml @@ -101,8 +101,8 @@ jobs: run: python ./.github/scripts/get_release_version.py - name: Download rad CLI run: | - echo "Downloading edge rad CLI" - wget -q "${{ env.RAD_CLI_URL }}" -O - | /bin/bash -s edge + echo "Downloading latest rad CLI" + wget -q "${{ env.RAD_CLI_URL }}" -O - | /bin/bash - name: Login to GitHub Container Registry uses: docker/login-action@v2 with: