Skip to content

Commit

Permalink
Merge pull request #302 from codecov/fix/release-grep
Browse files Browse the repository at this point in the history
Fix release version
  • Loading branch information
trent-codecov authored Oct 12, 2023
2 parents 964cec6 + ae98f5e commit a6f5f95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- id: get-release-vars
name: Configure Release Vars
run: |
grep -E "version=\"(\d\.\d\.\d)\"" setup.py | grep -Eo "\d.\d.\d" >> "$GITHUB_OUTPUT"
echo release_version=$(grep -E "version=\"[0-9]\.[0-9]\.[0-9]\"" setup.py | grep -Eo "[0-9]\.[0-9]\.[0-9]") >> "$GITHUB_OUTPUT"
- name: Create GH Release
uses: softprops/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="codecov-cli",
version="0.3.8",
version="0.3.7",
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
description="Codecov Command Line Interface",
long_description=long_description,
Expand Down

0 comments on commit a6f5f95

Please sign in to comment.