Difference between revisions of "GitHub Actions output"

From wikieduonline
Jump to navigation Jump to search
 
(2 intermediate revisions by the same user not shown)
Line 6: Line 6:
 
== Related ==
 
== Related ==
 
* [[needs.]]
 
* [[needs.]]
 +
* [[steps:]]
  
 
== See also ==
 
== See also ==
 +
* {{outputs:}}
 
* {{GHA}}
 
* {{GHA}}
 +
 +
[[Category:GitHub Actions]]

Latest revision as of 10:58, 24 October 2024

Identation at steps: level

 jobs:
   job1:
     runs-on: ubuntu-latest
     # Map a step output to a job output
     outputs:
       output1: ${{ steps.step1.outputs.test }}
       output2: ${{ steps.step2.outputs.test }}
     steps:
       - id: step1
         run: echo "test=hello" >> "$GITHUB_OUTPUT"
       - id: step2
         run: echo "test=world" >> "$GITHUB_OUTPUT"
   job2:
     runs-on: ubuntu-latest
     needs: job1
     steps:
       - env:
           OUTPUT1: ${{needs.job1.outputs.output1}}
           OUTPUT2: ${{needs.job1.outputs.output2}}
         run: echo "$OUTPUT1 $OUTPUT2"

Related[edit]

See also[edit]

Advertising: