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 13512f8 commit 376cdadCopy full SHA for 376cdad
.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 = [bool]"${{ github.event_name == 'release' && env.NUGET_UPLOAD_NUGET == 'true' }}"
567
- $pushGitHub = [bool]"${{ github.event_name == 'release' && env.NUGET_UPLOAD_GITHUB == 'true' }}"
+ $pushNuGet = "${{ github.event_name == 'release' && env.NUGET_UPLOAD_NUGET == 'true' }}" -eq "true"
+ $pushGitHub = "${{ github.event_name == 'release' && env.NUGET_UPLOAD_GITHUB == 'true' }}" -eq "true"
568
# $deleteOnFail = $true # Handled by default in build-pipeline.ps1
569
570
$pipelineArgs = @{
0 commit comments