Skip to content

Commit 96a5188

Browse files
committed
Build/Test Tools: Always generate build ZIP on push for 6.4.
This updates the 6.5 branch to make use of [58345], which fixes a bug where a ZIP file with built WordPress is not saved as an artifact causing the performance workflow to fail. Merges [53845] to the 6.4 branch. Props jorbin. See #59416. git-svn-id: https://develop.svn.wordpress.org/branches/6.4@58347 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 366ad4d commit 96a5188

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/test-build-processes.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,16 @@ jobs:
5151
os: [ ubuntu-latest, windows-latest ]
5252
directory: [ 'src', 'build' ]
5353
include:
54-
# Only prepare artifacts for Playground once.
54+
# Only prepare artifacts once.
5555
- os: ubuntu-latest
5656
directory: 'build'
57-
prepare-playground: true
57+
save-build: true
58+
prepare-playground: ${{ github.event_name == 'pull_request' && true || '' }}
59+
5860
with:
5961
os: ${{ matrix.os }}
6062
directory: ${{ matrix.directory }}
63+
save-build: ${{ matrix.save-build && matrix.save-build || false }}
6164
prepare-playground: ${{ matrix.prepare-playground && matrix.prepare-playground || false }}
6265
test-emoji: false
6366

0 commit comments

Comments
 (0)