Skip to content

Commit 821b31c

Browse files
authored
take run-id in build-docs
1 parent 5926193 commit 821b31c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/build-docs.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ on:
2121
required: false
2222
default: ""
2323
type: string
24+
run-id:
25+
description: "The GHA run ID that generated validated artifacts"
26+
required: false
27+
default: ${{ github.run_id }}
28+
type: string
2429
is-release:
2530
description: "Are we building release docs?"
2631
required: false
@@ -95,6 +100,7 @@ jobs:
95100
with:
96101
name: cuda-python-wheel
97102
path: .
103+
run-id: ${{ inputs.run-id }}
98104

99105
- name: Display structure of downloaded cuda-python artifacts
100106
run: |
@@ -106,6 +112,7 @@ jobs:
106112
with:
107113
name: ${{ env.CUDA_BINDINGS_ARTIFACT_NAME }}
108114
path: ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}
115+
run-id: ${{ inputs.run-id }}
109116

110117
- name: Display structure of downloaded cuda.bindings artifacts
111118
run: |
@@ -117,6 +124,7 @@ jobs:
117124
with:
118125
name: ${{ env.CUDA_CORE_ARTIFACT_NAME }}
119126
path: ${{ env.CUDA_CORE_ARTIFACTS_DIR }}
127+
run-id: ${{ inputs.run-id }}
120128

121129
- name: Display structure of downloaded cuda.core build artifacts
122130
run: |

0 commit comments

Comments
 (0)