From b427f916c5bc6a7fadf9fe9f86fbc7d212b94537 Mon Sep 17 00:00:00 2001 From: Kevin Meinhardt Date: Tue, 25 Jun 2024 19:51:02 +0200 Subject: [PATCH] typeify on consumer --- .github/workflows/default.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index c1fc795..9e78bff 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -58,7 +58,7 @@ jobs: needs: context uses: ./.github/workflows/worker.yml with: - boolean: ${{ needs.context.outputs.boolean }} - number: ${{ needs.context.outputs.number }} + boolean: ${{ fromJson(needs.context.outputs.boolean) }} + number: ${{ fromJson(needs.context.outputs.number) }} string: ${{ needs.context.outputs.string }} optional: ${{ needs.context.outputs.optional }}