From 4c7fe1092f3bfc719dab200ae1b05392e9dfb710 Mon Sep 17 00:00:00 2001 From: ingeniumed Date: Tue, 4 Feb 2025 16:31:11 +1100 Subject: [PATCH] Correctly read the artifact url --- .github/workflows/pr-build-live-branch.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pr-build-live-branch.yml b/.github/workflows/pr-build-live-branch.yml index 4a93e884..26ec9f6e 100644 --- a/.github/workflows/pr-build-live-branch.yml +++ b/.github/workflows/pr-build-live-branch.yml @@ -83,4 +83,5 @@ jobs: with: script: | const { run } = require('./.github/workflows/scripts/generate-playground-blueprint'); - run({ github, context, core, ${{ steps.create-playground-artifact-step.outputs.artifact-url }} }); + const artifactUrl = ${{ steps.create-playground-artifact-step.outputs.artifact-url }} + run({ github, context, core, artifactUrl });