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 8982156 commit dc16f26Copy full SHA for dc16f26
.github/workflows/integration.yml
@@ -8,9 +8,10 @@ jobs:
8
- id: output-set
9
uses: actions/github-script@master
10
with:
11
- script: return 'test'
+ script: return core.getInput('input-value')
12
result-encoding: string
13
+ input-value: output
14
- run: |
- if [[ "${{steps.output-set.outputs.result}}" != "test" ]]; then
15
+ if [[ "${{steps.output-set.outputs.result}}" != "output" ]]; then
16
exit 1
17
fi
0 commit comments