Skip to content

Commit bed4b49

Browse files
Add action to do the full stable release. (#10107)
1 parent 342cf64 commit bed4b49

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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

0 commit comments

Comments
 (0)