Skip to content

Commit 7527617

Browse files
committed
Release 0.3.4
1 parent b316600 commit 7527617

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This task takes only one `version` parameter input (semantic versioning) which i
2222
steps:
2323
- task: BicepInstall@0
2424
inputs:
25-
version: 0.3.539
25+
version: 0.4.613
2626
```
2727
2828
# 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
110110

111111
If no input regarding output options is set, it will default to the source directory and source filename as output (only changing the extension).
112112

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+
113117
# Local Development
114118

115119
**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
133137

134138
```powershell
135139
# 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
137141
$env:INPUT_PROCESS = "multiple" # Selection between 'multiple' or 'single' file(s) processing
138142
$env:INPUT_SOURCEDIRECTORY = "C:\bicep_files\*.bicep" # Or any other existing directory with bicep file(s)
139143
$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
143147
```
144148
```bash
145149
# 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
147151
export INPUT_PROCESS = "multiple" # Selection between 'multiple' or 'single' file(s) processing
148152
export INPUT_SOURCEDIRECTORY="C:\bicep_files\*.bicep" # Or any other existing directory with bicep file(s)
149153
export INPUT_SOURCEFILE = "C:\bicep_files\sample1.bicep" # Or any other existing bicep file

src/decompile/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"version": {
1717
"Major": 0,
1818
"Minor": 3,
19-
"Patch": 3
19+
"Patch": 4
2020
},
2121
"instanceNameFormat": "Run Bicep CLI decompile command",
2222
"inputs": [

src/install/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"version": {
1717
"Major": 0,
1818
"Minor": 3,
19-
"Patch": 3
19+
"Patch": 4
2020
},
2121
"instanceNameFormat": "Install Bicep CLI",
2222
"inputs": [

src/run/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"version": {
1717
"Major": 0,
1818
"Minor": 3,
19-
"Patch": 3
19+
"Patch": 4
2020
},
2121
"instanceNameFormat": "Run Bicep CLI build command",
2222
"inputs": [

0 commit comments

Comments
 (0)