File tree Expand file tree Collapse file tree 1 file changed +49
-0
lines changed Expand file tree Collapse file tree 1 file changed +49
-0
lines changed Original file line number Diff line number Diff line change 1+ name : " Release Stable All Portable Versions"
2+
3+ on :
4+ workflow_dispatch :
5+ inputs :
6+ git_tag :
7+ description : ' Git tag'
8+ required : true
9+ type : string
10+
11+ jobs :
12+ release_nvidia_default :
13+ name : " Release NVIDIA Default (cu129)"
14+ uses : ./.github/workflows/stable-release.yml
15+ with :
16+ git_tag : ${{ inputs.git_tag }}
17+ cache_tag : " cu129"
18+ python_minor : " 13"
19+ python_patch : " 6"
20+ rel_name : " nvidia"
21+ rel_extra_name : " "
22+ test_release : true
23+ secrets : inherit
24+
25+ release_nvidia_cu128 :
26+ name : " Release NVIDIA cu128"
27+ uses : ./.github/workflows/stable-release.yml
28+ with :
29+ git_tag : ${{ inputs.git_tag }}
30+ cache_tag : " cu128"
31+ python_minor : " 12"
32+ python_patch : " 10"
33+ rel_name : " nvidia"
34+ rel_extra_name : " _cu128"
35+ test_release : true
36+ secrets : inherit
37+
38+ release_amd_rocm :
39+ name : " Release AMD ROCm 6.4.4"
40+ uses : ./.github/workflows/stable-release.yml
41+ with :
42+ git_tag : ${{ inputs.git_tag }}
43+ cache_tag : " rocm644"
44+ python_minor : " 12"
45+ python_patch : " 10"
46+ rel_name : " amd"
47+ rel_extra_name : " "
48+ test_release : false
49+ secrets : inherit
You can’t perform that action at this time.
0 commit comments