Skip to content

Commit

Permalink
typeify on consumer
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinMind committed Jun 25, 2024
1 parent 3873803 commit b427f91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit b427f91

Please sign in to comment.