diff --git a/.github/workflows/release-mockup-multiple.yml b/.github/workflows/release-mockup-multiple.yml new file mode 100644 index 0000000000..b7a5bc585b --- /dev/null +++ b/.github/workflows/release-mockup-multiple.yml @@ -0,0 +1,45 @@ +# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 + +# Input-only mockup for the unified-form design. +# This keeps separate tag fields visible in one workflow. + +name: "Release Mockup: multiple git tags" + +on: + workflow_dispatch: + inputs: + shared-git-tag: + description: "Shared release git tag for cuda-python / cuda-bindings (e.g. v13.2.0)" + required: false + type: string + shared-tag-target: + description: "For the shared vX.Y.Z tag only, choose whether to release cuda-python, cuda-bindings, or both." + required: true + type: choice + # Sentinel first option so the UI does not silently pick a real target. + # A real workflow would reject this value during validation. + options: + - -- select target for plain vX.Y.Z tags -- + - cuda-python only + - cuda-bindings only + - cuda-python + cuda-bindings + cuda-core-git-tag: + description: "Release git tag for cuda-core (e.g. cuda-core-v0.7.0)" + required: false + type: string + cuda-pathfinder-git-tag: + description: "Release git tag for cuda-pathfinder (e.g. cuda-pathfinder-v1.5.3)" + required: false + type: string + +jobs: + mockup-only: + name: Mockup placeholder + runs-on: ubuntu-latest + steps: + - name: Placeholder + run: | + echo "This is an input-only workflow mockup." + echo "No release actions are defined here." diff --git a/.github/workflows/release-mockup-single.yml b/.github/workflows/release-mockup-single.yml new file mode 100644 index 0000000000..8ab62fceb8 --- /dev/null +++ b/.github/workflows/release-mockup-single.yml @@ -0,0 +1,37 @@ +# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. +# +# SPDX-License-Identifier: Apache-2.0 + +# Input-only mockup for the split-workflow design. +# This models the shared-tag release family for cuda-python / cuda-bindings. + +name: "Release Mockup: single git tag" + +on: + workflow_dispatch: + inputs: + git-tag: + description: "Release git tag. Use vX.Y.Z for the shared cuda-python/cuda-bindings line, cuda-core-vX.Y.Z for cuda-core, or cuda-pathfinder-vX.Y.Z for cuda-pathfinder." + required: true + type: string + shared-tag-target: + description: "For plain vX.Y.Z tags only, choose whether to release cuda-python, cuda-bindings, or both." + required: true + type: choice + # Sentinel first option so the UI does not silently pick a real target. + # A real workflow would reject this value during validation. + options: + - -- select target for plain vX.Y.Z tags -- + - cuda-python only + - cuda-bindings only + - cuda-python + cuda-bindings + +jobs: + mockup-only: + name: Mockup placeholder + runs-on: ubuntu-latest + steps: + - name: Placeholder + run: | + echo "This is an input-only workflow mockup." + echo "No release actions are defined here."