Skip to content

Commit 75108da

Browse files
authored
Merge pull request #13 from getsentry/spalmurray/fix-release
fix: file path for grepping version number in create_release.yml
2 parents f87f58b + c218a8e commit 75108da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/create_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- id: get-release-vars
2222
name: Configure Release Vars
2323
run: |
24-
release_version=v$(grep -E "version = \"[0-9]+\.[0-9]+\.[0-9]+\"" pyproject.toml | grep -Eo "[0-9]+\.[0-9]+\.[0-9]+")
24+
release_version=v$(grep -E "version = \"[0-9]+\.[0-9]+\.[0-9]+\"" codecov-cli/pyproject.toml | grep -Eo "[0-9]+\.[0-9]+\.[0-9]+")
2525
previous_version=$(git tag --sort=-creatordate | head -n 2 | tail -n 1)
2626
echo "release_version=$release_version"
2727
echo "previous_version=$previous_version"

0 commit comments

Comments
 (0)