You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ This task takes only one `version` parameter input (semantic versioning) which i
22
22
steps:
23
23
- task: BicepInstall@0
24
24
inputs:
25
-
version: 0.4.613
25
+
version: 0.10.13
26
26
```
27
27
28
28
# Run Bicep CLI build command task
@@ -114,6 +114,10 @@ If no input regarding output options is set, it will default to the source direc
114
114
115
115
Starting with the patch 0.3.4, warnings in the build or decompilation processes will report a `SucceededWithIssues` status, showing all warnings in the pipeline execution.
116
116
117
+
## Bicep versions support
118
+
119
+
Please consider using the latest version of the Bicep CLI, this extension does not ensure a correct execution with versions prior to `0.4.x`.
120
+
117
121
# Local Development
118
122
119
123
**Note:** [Bicep](https://github.com/Azure/bicep) must be installed in the local machine. [TypeScript](https://www.typescriptlang.org/download) must be also installed as a global package (`npm i typescript -g`).
@@ -137,7 +141,7 @@ export AGENT_TOOLSDIRECTORY="/tools" # Or any other existing directory
137
141
138
142
```powershell
139
143
# For PowerShell:
140
-
$env:INPUT_VERSION = "0.4.613" # Or any other valid Bicep version
144
+
$env:INPUT_VERSION = "0.10.13" # Or any other valid Bicep version
141
145
$env:INPUT_PROCESS = "multiple" # Selection between 'multiple' or 'single' file(s) processing
142
146
$env:INPUT_SOURCEDIRECTORY = "C:\bicep_files\*.bicep" # Or any other existing directory with bicep file(s)
143
147
$env:INPUT_SOURCEFILE = "C:\bicep_files\sample1.bicep" # Or any other existing bicep file
@@ -147,7 +151,7 @@ $env:INPUT_OUTPUTFILE = "C:\bicep_files\sample1.out.json" # Or any other path/fi
147
151
```
148
152
```bash
149
153
# For bash:
150
-
export INPUT_VERSION="0.4.613" # Or any other valid Bicep version
154
+
export INPUT_VERSION="0.10.13" # Or any other valid Bicep version
151
155
export INPUT_PROCESS = "multiple" # Selection between 'multiple' or 'single' file(s) processing
152
156
export INPUT_SOURCEDIRECTORY="C:\bicep_files\*.bicep" # Or any other existing directory with bicep file(s)
153
157
export INPUT_SOURCEFILE = "C:\bicep_files\sample1.bicep" # Or any other existing bicep file
0 commit comments