We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0139f1 commit eb586abCopy full SHA for eb586ab
.github/workflows/default.yml
@@ -49,10 +49,10 @@ jobs:
49
- id: inputs
50
shell: bash
51
run: |
52
- boolean="${{ inputs.boolean || false }}"
53
- number="${{ inputs.number || 10 }}"
54
- string="${{ inputs.string || 'goodbye' }}"
55
- optional="${{ inputs.optional }}"
+ echo "boolean=${{ inputs.boolean || false }}" >> $GITHUB_OUTPUT
+ echo "number=${{ inputs.number || 10 }}" >> $GITHUB_OUTPUT
+ echo "string=${{ inputs.string || 'goodbye' }}" >> $GITHUB_OUTPUT
+ echo "optional=${{ inputs.optional }}" >> $GITHUB_OUTPUT
56
57
call_worker:
58
needs: context
0 commit comments