We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13dac21 commit 61c2f9fCopy full SHA for 61c2f9f
1 file changed
.github/workflows/playground.yml
@@ -58,8 +58,8 @@ jobs:
58
set -euxo pipefail
59
ARTIFACT_URL="https://nightly.link/${{ github.repository }}/actions/runs/${{ github.run_id }}/${{ github.event.repository.name }}.zip"
60
61
- # Load blueprint and replace plugin name with artifact URL
62
- BLUEPRINT=$(cat .wordpress-org/blueprints/blueprint.json | sed "s/\"progress-planner\"/\"${ARTIFACT_URL}\"/g")
+ # Load blueprint and replace plugin name with artifact URL using | as delimiter
+ BLUEPRINT=$(cat .wordpress-org/blueprints/blueprint.json | sed "s|\"progress-planner\"|\"${ARTIFACT_URL}\"|g")
63
64
# Base64 encode the blueprint
65
ENCODED_BLUEPRINT=$(echo -n "$BLUEPRINT" | base64 -w 0)
0 commit comments