Thursday, November 4, 2021

How to set a job to execute sequentially after another job instead of parallel

 

run-second-job:
 runs-on: windows-latest
 needs: ["run-first-job"]
 timeout-minnutes: 360
 steps:
 - name: echo1
   run: echo "hjg gh"
   continue-on-error: true
 - name: echo2
   run: echo "hjg gh"

No comments:

Post a Comment