Skip to content
Open
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
14 changes: 11 additions & 3 deletions .github/workflows/build-plugin-zip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,10 +222,18 @@ jobs:
IS_GUTENBERG_PLUGIN: ${{ matrix.IS_GUTENBERG_PLUGIN }}
IS_WORDPRESS_CORE: ${{ ! matrix.IS_GUTENBERG_PLUGIN }}

- name: Upload artifact
- name: Upload artifact (Gutenberg plugin build)
if: ${{ matrix.IS_GUTENBERG_PLUGIN }}
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: gutenberg-${{ ! matrix.IS_GUTENBERG_PLUGIN && 'wordpress-develop' || 'plugin' }}
path: ./gutenberg.zip
archive: false

- name: Upload artifact (WordPress develop build)
if: ${{ ! matrix.IS_GUTENBERG_PLUGIN }}
uses: actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
with:
name: gutenberg-wordpress-develop
path: ./gutenberg.zip

- name: Build release notes draft
Expand Down Expand Up @@ -377,7 +385,7 @@ jobs:
- name: Download Plugin Zip Artifact
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: gutenberg-plugin
name: gutenberg.zip

- name: Download Release Notes Artifact
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
Expand Down
Loading