mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 11:37:00 +00:00
* [ubuntu] Cleanup bash scripts * Fix ms-repos lsb_release * Fix install-bicep url * Fix install-nvm
18 lines
603 B
Bash
18 lines
603 B
Bash
#!/bin/bash -e
|
|
################################################################################
|
|
## File: install-bicep.sh
|
|
## Desc: Install bicep cli
|
|
################################################################################
|
|
|
|
# Source the helpers for use with the script
|
|
source $HELPER_SCRIPTS/install.sh
|
|
|
|
# Install Bicep CLI
|
|
download_url=$(resolve_github_release_asset_url "Azure/bicep" "endswith(\"bicep-linux-x64\")" "latest")
|
|
bicep_binary_path=$(download_with_retry "${download_url}")
|
|
|
|
# Mark it as executable
|
|
install "$bicep_binary_path" /usr/local/bin/bicep
|
|
|
|
invoke_tests "Tools" "Bicep"
|