Skip to content

Commit a306c50

Browse files
fix: update release
1 parent e530a94 commit a306c50

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/create_release.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@ jobs:
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v4
17+
with:
18+
fetch-tags: true
1719

1820
- id: get-release-vars
1921
name: Configure Release Vars
2022
run: |
21-
release_version==v$(grep -E "version = \"[0-9]+\.[0-9]+\.[0-9]+\"" pyproject.toml | grep -Eo "[0-9]+\.[0-9]+\.[0-9]+")
23+
release_version=v$(grep -E "version = \"[0-9]+\.[0-9]+\.[0-9]+\"" pyproject.toml | grep -Eo "[0-9]+\.[0-9]+\.[0-9]+")
2224
previous_version=$(git tag --sort=-creatordate | head -n 2 | tail -n 1)
2325
echo "release_version=$release_version"
2426
echo "previous_version=$previous_version"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ license = {file = "LICENSE"}
2626
name = "codecov-cli"
2727
readme = "README.md"
2828
requires-python = ">= 3.9"
29-
version = "10.1.0"
29+
version = "10.0.1"
3030

3131
[project.scripts]
3232
codecov = "codecov_cli.main:run"

0 commit comments

Comments
 (0)