diff --git a/.github/scripts/validate_bicep.py b/.github/scripts/validate_bicep.py index 39d5b3cd7..a04729099 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 6493bb0a6..e4e2c1caa 100644 --- a/.github/workflows/validate-bicep.yaml +++ b/.github/workflows/validate-bicep.yaml @@ -33,8 +33,8 @@ jobs: uses: actions/checkout@v4 - 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 diff --git a/docs/content/guides/deploy-apps/howto-deploy/howto-deploy-cicd/index.md b/docs/content/guides/deploy-apps/howto-deploy/howto-deploy-cicd/index.md index 3a23e29d9..a3f7c94f6 100644 --- a/docs/content/guides/deploy-apps/howto-deploy/howto-deploy-cicd/index.md +++ b/docs/content/guides/deploy-apps/howto-deploy/howto-deploy-cicd/index.md @@ -110,7 +110,7 @@ Ensure the service principal created above has the proper RBAC assignment to dow Next, download the latest `rad` CLI release and setup your workspace: ```yml - - name: Download rad CLI and rad-bicep + - name: Download rad CLI and bicep run: | wget -q "https://raw.githubusercontent.com/radius-project/radius/main/deploy/install.sh" -O - | /bin/bash ./rad bicep download diff --git a/docs/content/guides/tooling/rad-cli/overview/index.md b/docs/content/guides/tooling/rad-cli/overview/index.md index f0b04e44b..163cb75d0 100644 --- a/docs/content/guides/tooling/rad-cli/overview/index.md +++ b/docs/content/guides/tooling/rad-cli/overview/index.md @@ -68,7 +68,7 @@ By default, the rad CLI installation script installs the rad CLI to `%LOCALAPPDA ## Configuration -The rad CLI stores its configuration, the rad-Bicep compiler, and other configuration under the `rad` directory. +The rad CLI stores its configuration, the Bicep compiler, and other configuration under the `rad` directory. {{< tabs "macOS/Linux/WSL" "Windows" >}} @@ -90,9 +90,9 @@ When the rad CLI runs commands, it will use the configuration in the `config.yam For more information, refer to the [`config.yaml` reference documentation]({{< ref "/reference/config" >}}). -### `rad-bicep` compiler +### `bicep` compiler -The rad CLI uses the Bicep compiler to compile Bicep files to JSON templates. The Bicep compiler is stored as `/bin/rad-bicep` within your configuration directory. +The rad CLI uses the Bicep compiler to compile Bicep files to JSON templates. The Bicep compiler is stored as `/bin/bicep` within your configuration directory. ## Reference documentation