File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,15 @@ name: "Release NeMo-Eval"
1616on :
1717 workflow_dispatch :
1818 inputs :
19+ component :
20+ description : Component to release
21+ required : true
22+ default : nemo-evaluator
23+ type : choice
24+ options :
25+ - nemo-evaluator
26+ - nemo-evaluator-launcher
27+ - all
1928 release-ref :
2029 description : Ref (SHA or branch name) to release
2130 required : true
@@ -43,6 +52,7 @@ permissions:
4352
4453jobs :
4554 release :
55+ if : ${{ inputs.component == 'nemo-evaluator' || inputs.component == 'all' }}
4656 uses :
NVIDIA-NeMo/FW-CI-templates/.github/workflows/[email protected] 4757 with :
4858 release-ref : ${{ inputs.release-ref || github.sha }}
6878 BOT_KEY : ${{ secrets.BOT_KEY }}
6979
7080 release-launcher :
81+ if : ${{ inputs.component == 'nemo-evaluator-launcher' || inputs.component == 'all' }}
7182 uses :
NVIDIA-NeMo/FW-CI-templates/.github/workflows/[email protected] 7283 with :
7384 release-ref : ${{ inputs.release-ref || github.sha }}
You can’t perform that action at this time.
0 commit comments