Skip to content

Commit

Permalink
Fix artifact upload conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
elzik committed Oct 26, 2024
1 parent 6b584d3 commit 69ee174
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
run: ./Build/build-windows-installer.ps1
shell: pwsh
- name: Upload Windows Artifact
if: steps.release-check.outputs.needs-release == 'True'
if: needs.check-release-requirement.outputs.needs-release == 'true'
uses: actions/upload-artifact@v3
with:
name: windows-installer
Expand All @@ -104,7 +104,7 @@ jobs:
run: ./Build/build-osx-installer.ps1
shell: pwsh
- name: Upload macOS Artifact
if: steps.release-check.outputs.needs-release == 'True'
if: needs.check-release-requirement.outputs.needs-release == 'true'
uses: actions/upload-artifact@v3
with:
name: macos-installer
Expand Down

0 comments on commit 69ee174

Please sign in to comment.