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 ec9261d commit 13512f8Copy full SHA for 13512f8
.github/workflows/ci.yml
@@ -563,8 +563,8 @@ jobs:
563
- name: Run Merge, Pack, Test, and Publish Script
564
shell: pwsh
565
run: |
566
- $pushNuGet = ${{ github.event_name == 'release' && env.NUGET_UPLOAD_NUGET == 'true' }} -eq 'true'
567
- $pushGitHub = ${{ github.event_name == 'release' && env.NUGET_UPLOAD_GITHUB == 'true' }} -eq 'true'
+ $pushNuGet = [bool]"${{ github.event_name == 'release' && env.NUGET_UPLOAD_NUGET == 'true' }}"
+ $pushGitHub = [bool]"${{ github.event_name == 'release' && env.NUGET_UPLOAD_GITHUB == 'true' }}"
568
# $deleteOnFail = $true # Handled by default in build-pipeline.ps1
569
570
$pipelineArgs = @{
0 commit comments