Skip to content

Commit 447884b

Browse files
Make stable release workflow callable. (#10108)
1 parent bed4b49 commit 447884b

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

.github/workflows/stable-release.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,42 @@
22
name: "Release Stable Version"
33

44
on:
5+
workflow_call:
6+
inputs:
7+
git_tag:
8+
description: 'Git tag'
9+
required: true
10+
type: string
11+
cache_tag:
12+
description: 'Cached dependencies tag'
13+
required: true
14+
type: string
15+
default: "cu129"
16+
python_minor:
17+
description: 'Python minor version'
18+
required: true
19+
type: string
20+
default: "13"
21+
python_patch:
22+
description: 'Python patch version'
23+
required: true
24+
type: string
25+
default: "6"
26+
rel_name:
27+
description: 'Release name'
28+
required: true
29+
type: string
30+
default: "nvidia"
31+
rel_extra_name:
32+
description: 'Release extra name'
33+
required: false
34+
type: string
35+
default: ""
36+
test_release:
37+
description: 'Test Release'
38+
required: true
39+
type: boolean
40+
default: true
541
workflow_dispatch:
642
inputs:
743
git_tag:

0 commit comments

Comments
 (0)