Skip to content

Commit

Permalink
add default inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
alinpahontu2912 committed Mar 5, 2025
1 parent d87e3ff commit c442f96
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build_wheel_windows_x64_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ on:
description: "Optional: build version for wheel file name (e.g. 2.6.0); leave empty for default naming"
required: false
type: string
default: "2.6.0"
default: ""

permissions:
id-token: write
Expand All @@ -62,9 +62,9 @@ jobs:
trigger-test-infra:
uses: alinpahontu2912/test-infra/.github/workflows/build_wheels_windows_x64_test.yml@x64windows_test
with:
python_version: ${{ inputs.python_version }}
msvc_version: ${{ inputs.msvc_version }}
build_type: ${{ inputs.build_type }}
repository_name: ${{ inputs.repository_name }}
repository_branch: ${{ inputs.repository_branch }}
build_version: ${{ inputs.build_version }}
python_version: ${{ inputs.python_version || 'Python312' }}
msvc_version: ${{ inputs.msvc_version || 'latest' }}
build_type: ${{ inputs.build_type || 'Release' }}
repository_name: ${{ inputs.repository_name || 'pytorch/vision' }}
repository_branch: ${{ inputs.repository_branch || 'main' }}
build_version: ${{ inputs.build_version || '' }}

0 comments on commit c442f96

Please sign in to comment.