We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ca5103 commit 465d962Copy full SHA for 465d962
.github/workflows/python-release.yml
@@ -33,13 +33,13 @@ jobs:
33
name: Validate version input
34
runs-on: ubuntu-latest
35
steps:
36
- - name: Check version format
+ - name: Validate version input
37
if: ${{ github.event.inputs.version != 'main' && !contains(github.event.inputs.version, 'rc') }}
38
run: |
39
echo "Error: Invalid version format. You provided: '${{ github.event.inputs.version }}'"
40
echo "Allowed formats:"
41
echo " - 'main'"
42
- echo " - Semantic version with 'rc' suffix (e.g., 0.8.0rc1, 0.8.0rc2)"
+ echo " - version string containing 'rc' (e.g., 0.8.0rc1, 0.8.0rc2)"
43
exit 1
44
45
build_wheels:
0 commit comments