Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/scripts/validate_bicep.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/validate-bicep.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions docs/content/guides/tooling/rad-cli/overview/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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" >}}

Expand All @@ -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

Expand Down
Loading