Skip to content

Commit eb586ab

Browse files
committed
output vars
1 parent f0139f1 commit eb586ab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/default.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ jobs:
4949
- id: inputs
5050
shell: bash
5151
run: |
52-
boolean="${{ inputs.boolean || false }}"
53-
number="${{ inputs.number || 10 }}"
54-
string="${{ inputs.string || 'goodbye' }}"
55-
optional="${{ inputs.optional }}"
52+
echo "boolean=${{ inputs.boolean || false }}" >> $GITHUB_OUTPUT
53+
echo "number=${{ inputs.number || 10 }}" >> $GITHUB_OUTPUT
54+
echo "string=${{ inputs.string || 'goodbye' }}" >> $GITHUB_OUTPUT
55+
echo "optional=${{ inputs.optional }}" >> $GITHUB_OUTPUT
5656
5757
call_worker:
5858
needs: context

0 commit comments

Comments
 (0)