From d835f413af9b48d78a516ca9124760e77b338c45 Mon Sep 17 00:00:00 2001 From: Robert Sturla Date: Sat, 21 Dec 2024 00:44:19 +0000 Subject: [PATCH] fix workflow_call outputs key --- .github/workflows/reusable-build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/reusable-build.yml b/.github/workflows/reusable-build.yml index 3bb9acdc..75dcabc2 100644 --- a/.github/workflows/reusable-build.yml +++ b/.github/workflows/reusable-build.yml @@ -23,8 +23,10 @@ on: description: "The build arguments to pass to the build" required: false type: string - output: - manifest-digest: ${{ jobs.manifest.outputs.manifest-digest }} + outputs: + manifest-digest: + description: "The digest of the remote manifest" + value: ${{ jobs.manifest.outputs.manifest-digest }} concurrency: group: ${{ github.workflow }}-${{ github.ref || github.run_id }}-${{ inputs.fedora_version }}-${{ inputs.fedora_edition }}-${{ inputs.platforms }}