Skip to content

Commit

Permalink
Add option to skip if build artifact name == none (#3378)
Browse files Browse the repository at this point in the history
Signed-off-by: Alan Jowett (from Dev Box) <[email protected]>
  • Loading branch information
Alan-Jowett authored Mar 25, 2024
1 parent 1f75323 commit 8b04cee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ jobs:
Compress-Archive -Path ${{env.BUILD_PLATFORM}}\${{env.BUILD_CONFIGURATION}} -DestinationPath .\build-${{ matrix.configurations }}.zip
- name: Upload Build Output
if: always() && (steps.skip_check.outputs.should_skip != 'true')
if: always() && (steps.skip_check.outputs.should_skip != 'true') && (inputs.build_artifact != 'none')
uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3
with:
name: ${{inputs.build_artifact}}-${{matrix.configurations}}
Expand Down

0 comments on commit 8b04cee

Please sign in to comment.