We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a590913 commit ff98063Copy full SHA for ff98063
1 file changed
.github/workflows/dev.yaml
@@ -0,0 +1,23 @@
1
+---
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ job1:
10
+ runs-on: ubuntu-latest
11
+ outputs:
12
+ artifact: my-app
13
+ steps:
14
+ - id: step1
15
+ name: step 1
16
+ run: echo tip='HOW ARE YOU?' >> $GITHUB_OUTPUT
17
+ - name: step 2
18
+ run: "output from step1 is ${{ steps.step1.outputs.tip }}"
19
+ job2:
20
+ needs: job1
21
22
23
+ - run: echo "${{ needs.job1.outputs.artifact }}"
0 commit comments