mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
15 lines
509 B
Bash
15 lines
509 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: install-bicep.sh
|
|
## Desc: Install bicep cli
|
|
################################################################################
|
|
|
|
source $HELPER_SCRIPTS/install.sh
|
|
|
|
# Install Bicep CLI
|
|
bicep_binary_path=$(download_with_retry "https://github.com/Azure/bicep/releases/latest/download/bicep-linux-x64")
|
|
# Mark it as executable
|
|
install "$bicep_binary_path" /usr/local/bin/bicep
|
|
|
|
invoke_tests "Tools" "Bicep"
|