Skip to content

Commit 98a4c32

Browse files
committed
test
1 parent 26a07ee commit 98a4c32

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,18 @@ name: build
33
on: [ push ]
44

55
jobs:
6+
67
job1:
78
runs-on: ubuntu-latest
89
# Map a step output to a job output
9-
outputs:
10-
output1: ${{ steps.step1.outputs.test }}
11-
output2: ${{ steps.step2.outputs.test }}
1210
steps:
1311
- id: step1
1412
run: echo "::set-output name=test::hello"
1513
- id: step2
1614
run: echo "::set-output name=test::world"
15+
outputs:
16+
output1: ${{ steps.step1.outputs.test }}
17+
output2: ${{ steps.step2.outputs.test }}
1718
job2:
1819
runs-on: ubuntu-latest
1920
needs: job1

0 commit comments

Comments
 (0)