Skip to content

Commit 9854b49

Browse files
committed
bug
1 parent b22117b commit 9854b49

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/python-release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
echo "Workflow triggered by tag push."
4747
TAG=${GITHUB_REF#refs/tags/} # Extract the tag name
4848
VERSION=${TAG%rc*} # Extract version by removing everything after "rc"
49-
RC=${TAG#*rc} # Extract RCby removing everything before "rc"
49+
RC=${TAG#*rc} # Extract RC by removing everything before "rc"
5050
5151
if [[ -z "$VERSION" || -z "$RC" ]]; then
5252
echo "Error: Unable to parse VERSION or RC from tag ($TAG). Ensure the tag format is correct."
@@ -81,6 +81,8 @@ jobs:
8181
8282
validate-library-version:
8383
runs-on: ubuntu-latest
84+
needs:
85+
- validate-inputs
8486
steps:
8587
- uses: actions/checkout@v4
8688
with:

0 commit comments

Comments
 (0)