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