From af88560db1e095d43ed3eb382f81fb7d58da61a4 Mon Sep 17 00:00:00 2001 From: Nell Shamrell Date: Wed, 14 Jan 2026 17:06:26 -0800 Subject: [PATCH] renames rad-bicep to bicep Signed-off-by: Nell Shamrell --- .github/scripts/validate_bicep.py | 4 ++-- .github/workflows/validate-bicep.yaml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/scripts/validate_bicep.py b/.github/scripts/validate_bicep.py index 39d5b3cd..a0472909 100644 --- a/.github/scripts/validate_bicep.py +++ b/.github/scripts/validate_bicep.py @@ -6,10 +6,10 @@ # set the bicep binary name based on the OS if os.name == 'nt': - bicep_bin = 'rad-bicep.exe' + bicep_bin = 'bicep.exe' home_path = os.environ['USERPROFILE'] else: - bicep_bin = 'rad-bicep' + bicep_bin = 'bicep' home_path = os.environ['HOME'] # set the default Bicep path based on the runner diff --git a/.github/workflows/validate-bicep.yaml b/.github/workflows/validate-bicep.yaml index bf6b13d3..04a88da1 100644 --- a/.github/workflows/validate-bicep.yaml +++ b/.github/workflows/validate-bicep.yaml @@ -38,9 +38,9 @@ jobs: - name: Setup and verify bicep CLI run: | - curl -Lo rad-bicep https://github.com/Azure/bicep/releases/latest/download/bicep-linux-x64 - chmod +x ./rad-bicep - ./rad-bicep --version + curl -Lo bicep https://github.com/Azure/bicep/releases/latest/download/bicep-linux-x64 + chmod +x ./bicep + ./bicep --version - name: Verify Bicep files run: python ./.github/scripts/validate_bicep.py