Difference between revisions of "Needs."

From wikieduonline
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
 
  {{gha outputs}}
 
  {{gha outputs}}
  
 +
 +
[[steps.]]
 +
[[id:]]
  
 
* {{needs:}}
 
* {{needs:}}
 
* {{GHA}}
 
* {{GHA}}

Latest revision as of 16:08, 23 October 2024

 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"


steps.
id:

Advertising: