Last active
December 26, 2025 18:11
-
-
Save SirLouen/bf8041999696fa902b4f688f07d9d0a5 to your computer and use it in GitHub Desktop.
Testing Gutenberg Trunk
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://playground.wordpress.net/blueprint-schema.json", | |
| "preferredVersions": { | |
| "php": "8.3", | |
| "wp": "trunk" | |
| }, | |
| "features": { | |
| "networking": true | |
| }, | |
| "login": true, | |
| "landingPage": "/wp-admin/plugins.php", | |
| "steps": [ | |
| { | |
| "step": "mkdir", | |
| "path": "/tmp/gutenberg" | |
| }, | |
| { | |
| "step": "writeFile", | |
| "path": "/tmp/gutenberg/artifact.zip", | |
| "data": { | |
| "resource": "url", | |
| "url": "/plugin-proxy.php?org=WordPress&repo=gutenberg&workflow=Build%20Gutenberg%20Plugin%20Zip&artifact=gutenberg-plugin&branch=trunk", | |
| "caption": "Downloading Gutenberg branch trunk" | |
| } | |
| }, | |
| { | |
| "step": "unzip", | |
| "zipFile": { | |
| "resource": "vfs", | |
| "path": "/tmp/gutenberg/artifact.zip" | |
| }, | |
| "extractToPath": "/tmp/gutenberg" | |
| }, | |
| { | |
| "step": "installPlugin", | |
| "pluginData": { | |
| "resource": "vfs", | |
| "path": "/tmp/gutenberg/gutenberg.zip" | |
| }, | |
| "options": { | |
| "activate": true | |
| } | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment