Skip to content

Commit 4948aae

Browse files
committed
Fix the replacement of the artifact URL
1 parent 9477d43 commit 4948aae

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/playground.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
const fs = require('fs');
6464
const blueprint = JSON.parse(fs.readFileSync('.wordpress-org/blueprints/playground.json', 'utf8'));
6565
blueprint.plugins = blueprint.plugins.map(plugin =>
66-
plugin === '${{ github.repository }}' ? '$ARTIFACT_URL' : plugin
66+
plugin === '${{ github.event.repository.name }}' ? '$ARTIFACT_URL' : plugin
6767
);
6868
console.log(JSON.stringify(blueprint));
6969
")

0 commit comments

Comments
 (0)