Skip to content

Commit ca0b491

Browse files
committed
fix: remove checkForVersionCompatibility closes #19
1 parent 38e8a19 commit ca0b491

File tree

6 files changed

+8073
-4084
lines changed

6 files changed

+8073
-4084
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.4.613
25+
version: 0.10.13
2626
```
2727
2828
# 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
114114

115115
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.
116116

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+
117121
# Local Development
118122

119123
**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
137141

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

0 commit comments

Comments
 (0)