We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 637b3bc commit 517ba15Copy full SHA for 517ba15
.azure-pipelines-ci/ci.yaml
@@ -44,7 +44,7 @@ stages:
44
vmImage: windows-2019
45
pwsh: false
46
pool:
47
- vmImage: $[ variables['vmImage'] ]
+ vmImage: ${{ variables['vmImage'] }}
48
steps:
49
- template: templates/test.yaml
50
parameters:
.azure-pipelines-ci/templates/test.yaml
@@ -13,7 +13,7 @@ steps:
13
displayName: 'Test'
14
inputs:
15
targetType: inline
16
- pwsh: $[ parameters.pwsh ]
+ pwsh: ${{ parameters.pwsh }}
17
script: |
18
Import-Module .\tools\appveyor.psm1
19
Invoke-AppveyorTest -CheckoutPath $env:BUILD_SOURCESDIRECTORY
0 commit comments