Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,10 @@ jobs:
wack:
name: WACK (${{ matrix.platform }})
needs: [build-msix]
# build-msix runs via `if: always()` (it overrides the skipped release-please job on PRs). Without
# an explicit condition here, that upstream skip propagates through and skips WACK too. Gate on
# build-msix's actual result so WACK runs whenever the package was built, and skips with it.
if: always() && needs.build-msix.result == 'success'
runs-on: windows-latest
strategy:
fail-fast: false
Expand Down
Loading