mirror of
https://github.com/actions/runner-images.git
synced 2025-12-15 06:08:07 +00:00
* Add Bicep CLI * Correct regex for bicep version * Add Bicep CLI * use tap path for bicep brew install * use tap path for bicep brew install * use tap path for bicep brew install * Update bicep package name * Update bicep package name * Update bicep package name * Add install script in order to run homebrew tap * no need to reference utils.sh * Remove bicep from common packages * Add "CLI" to Bicep return statement Co-authored-by: Marcus Felling <MarcusFelling@microsoft.com>
8 lines
128 B
Bash
8 lines
128 B
Bash
#!/bin/bash -e -o pipefail
|
|
|
|
echo Installing bicep cli...
|
|
brew tap azure/bicep
|
|
brew install bicep
|
|
|
|
invoke_tests "Common" "Bicep"
|