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.3.539
25
+
version: 0.4.613
26
26
```
27
27
28
28
# Run Bicep CLI build command task
@@ -110,6 +110,10 @@ The order of preference of the inputs if `outputProcess` is not defined is the f
110
110
111
111
If no input regarding output options is set, it will default to the source directory and source filename as output (only changing the extension).
112
112
113
+
## Warnings handling
114
+
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
+
113
117
# Local Development
114
118
115
119
**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`).
@@ -133,7 +137,7 @@ export AGENT_TOOLSDIRECTORY="/tools" # Or any other existing directory
133
137
134
138
```powershell
135
139
# For PowerShell:
136
-
$env:INPUT_VERSION = "0.3.1" # Or any other valid Bicep version
140
+
$env:INPUT_VERSION = "0.4.613" # Or any other valid Bicep version
137
141
$env:INPUT_PROCESS = "multiple" # Selection between 'multiple' or 'single' file(s) processing
138
142
$env:INPUT_SOURCEDIRECTORY = "C:\bicep_files\*.bicep" # Or any other existing directory with bicep file(s)
139
143
$env:INPUT_SOURCEFILE = "C:\bicep_files\sample1.bicep" # Or any other existing bicep file
@@ -143,7 +147,7 @@ $env:INPUT_OUTPUTFILE = "C:\bicep_files\sample1.out.json" # Or any other path/fi
143
147
```
144
148
```bash
145
149
# For bash:
146
-
export INPUT_VERSION="0.3.1" # Or any other valid Bicep version
150
+
export INPUT_VERSION="0.4.613" # Or any other valid Bicep version
147
151
export INPUT_PROCESS = "multiple" # Selection between 'multiple' or 'single' file(s) processing
148
152
export INPUT_SOURCEDIRECTORY="C:\bicep_files\*.bicep" # Or any other existing directory with bicep file(s)
149
153
export INPUT_SOURCEFILE = "C:\bicep_files\sample1.bicep" # Or any other existing bicep file
0 commit comments