Skip to content

Commit 9230d3e

Browse files
committed
format
1 parent f34dd26 commit 9230d3e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/python-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ jobs:
3434
runs-on: ubuntu-latest
3535
steps:
3636
- name: Echo version input
37-
run: echo "Version input: '${{ github.event.inputs.version }}'"
37+
run: echo "Version input is: ${{ github.event.inputs.version }}"
3838

3939
- name: Validate version input
4040
if: ${{ github.event.inputs.version != 'main' && !contains(github.event.inputs.version, 'rc') }}
4141
run: |
4242
echo "Error: Invalid version format. You provided: '${{ github.event.inputs.version }}'"
4343
echo "Allowed formats:"
44-
echo " - 'main'"
45-
echo " - version string containing 'rc' (e.g., 0.8.0rc1, 0.8.0rc2)"
44+
echo " - 'main'"
45+
echo " - version string containing 'rc' (e.g., 0.8.0rc1, 0.8.0rc2)"
4646
exit 1
4747
4848
build_wheels:

0 commit comments

Comments
 (0)