From 52582315eb610a00db15cf2e2ae6d3d62dc6fe59 Mon Sep 17 00:00:00 2001 From: Zephrynis Date: Tue, 15 Apr 2025 21:57:50 +0100 Subject: [PATCH] Fix: Incorrect output var name --- entrypoint.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index f96db48..f05ec5e 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -20,5 +20,4 @@ identifier=$(grep -m 1 "identifier:" /app/.blueprint/dev/conf.yml | cut -d ":" - echo "Copying output back to workspace" cp "/app/${identifier}.blueprint" "/github/workspace/${identifier}.blueprint" -# Set output if needed -echo "blueprint_file=${identifier}.blueprint" >> $GITHUB_OUTPUT +echo "file=${identifier}.blueprint" >> $GITHUB_OUTPUT