Skip to content

Commit b427f91

Browse files
committed
typeify on consumer
1 parent 3873803 commit b427f91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/default.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
needs: context
5959
uses: ./.github/workflows/worker.yml
6060
with:
61-
boolean: ${{ needs.context.outputs.boolean }}
62-
number: ${{ needs.context.outputs.number }}
61+
boolean: ${{ fromJson(needs.context.outputs.boolean) }}
62+
number: ${{ fromJson(needs.context.outputs.number) }}
6363
string: ${{ needs.context.outputs.string }}
6464
optional: ${{ needs.context.outputs.optional }}

0 commit comments

Comments
 (0)