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 26a07ee commit 98a4c32Copy full SHA for 98a4c32
.github/workflows/build.yml
@@ -3,17 +3,18 @@ name: build
3
on: [ push ]
4
5
jobs:
6
+
7
job1:
8
runs-on: ubuntu-latest
9
# Map a step output to a job output
- outputs:
10
- output1: ${{ steps.step1.outputs.test }}
11
- output2: ${{ steps.step2.outputs.test }}
12
steps:
13
- id: step1
14
run: echo "::set-output name=test::hello"
15
- id: step2
16
run: echo "::set-output name=test::world"
+ outputs:
+ output1: ${{ steps.step1.outputs.test }}
17
+ output2: ${{ steps.step2.outputs.test }}
18
job2:
19
20
needs: job1
0 commit comments