From 85880d26716f9ef766c5eef03f6682c7008a12ac Mon Sep 17 00:00:00 2001 From: Tristan Date: Thu, 9 Jan 2025 23:16:50 +0000 Subject: [PATCH] Fix outputs usage --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b49b354..390101b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,8 +28,8 @@ jobs: secrets: "inherit" with: JDK_VERSION: "23" - BUILD_IMAGE: "${{ needs.build_variables.build_image }}" - BUILD_REVISION: "${{ needs.build_variables.build_version }}" + BUILD_IMAGE: "${{ needs.build_variables.outputs.build_image }}" + BUILD_REVISION: "${{ needs.build_variables.outputs.build_version }}" graal: name: "GraalVM AOT" @@ -38,5 +38,5 @@ jobs: secrets: "inherit" with: JDK_VERSION: "23" - BUILD_IMAGE: "${{ needs.build_variables.build_image }}" - BUILD_REVISION: "${{ needs.build_variables.build_version }}" + BUILD_IMAGE: "${{ needs.build_variables.outputs.build_image }}" + BUILD_REVISION: "${{ needs.build_variables.outputs.build_version }}"