From 853962c4e9d7e3e2eb883e729aeed640b34ac736 Mon Sep 17 00:00:00 2001 From: cytopia Date: Fri, 25 Mar 2022 14:11:23 +0100 Subject: [PATCH] Set outputs --- .github/workflows/aaa-reuse-configure.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/aaa-reuse-configure.yml b/.github/workflows/aaa-reuse-configure.yml index e749c34..aecbf91 100644 --- a/.github/workflows/aaa-reuse-configure.yml +++ b/.github/workflows/aaa-reuse-configure.yml @@ -33,6 +33,25 @@ on: dockerhub_password: description: 'The password for Dockerhub.' required: false + ### + ### Outouts + ### + outputs: + can_login: + description: "Can we login" + value: ${{ jobs.configure.outputs.can_login }} + has_refs: + description: "Do we have refs" + value: ${{ jobs.configure.outputs.has_refs }} + matrix_build: + description: "The determined build matrix" + value: ${{ jobs.configure.outputs.matrix_build }} + matrix_deploy: + description: "The determined deploy matrix" + value: ${{ jobs.configure.outputs.matrix_deploy }} + artifact_prefix: + description: "The determined unique artifact prefix" + value: ${{ jobs.configure.outputs.artifact_prefix }} jobs: