We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b22117b commit 9854b49Copy full SHA for 9854b49
.github/workflows/python-release.yml
@@ -46,7 +46,7 @@ jobs:
46
echo "Workflow triggered by tag push."
47
TAG=${GITHUB_REF#refs/tags/} # Extract the tag name
48
VERSION=${TAG%rc*} # Extract version by removing everything after "rc"
49
- RC=${TAG#*rc} # Extract RCby removing everything before "rc"
+ RC=${TAG#*rc} # Extract RC by removing everything before "rc"
50
51
if [[ -z "$VERSION" || -z "$RC" ]]; then
52
echo "Error: Unable to parse VERSION or RC from tag ($TAG). Ensure the tag format is correct."
@@ -81,6 +81,8 @@ jobs:
81
82
validate-library-version:
83
runs-on: ubuntu-latest
84
+ needs:
85
+ - validate-inputs
86
steps:
87
- uses: actions/checkout@v4
88
with:
0 commit comments