From 51f72f80959bef885d61c365129f66a7d4a4694a Mon Sep 17 00:00:00 2001 From: Kevin Meinhardt Date: Tue, 25 Jun 2024 19:54:01 +0200 Subject: [PATCH] Read the output from the called workflow --- .github/workflows/default.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index 9e78bff..9ed5420 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -62,3 +62,14 @@ jobs: number: ${{ fromJson(needs.context.outputs.number) }} string: ${{ needs.context.outputs.string }} optional: ${{ needs.context.outputs.optional }} + + read_worker: + needs: call_worker + runs-on: ubuntu-latest + + steps: + - shell: bash + run: | + cat <