Skip to content

Commit 9a53e97

Browse files
Th/fix release (#629)
* fix: update release * fix: more release updates
1 parent 93eb124 commit 9a53e97

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/build_for_pypi.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@ jobs:
8686
run: |
8787
ls -alrt */*/*
8888
mv */*/* dist/
89-
ls -alrt dist/
89+
ls -alrt */*
90+
find . -empty -type d -delete
91+
ls -alrt */*
9092
- name: Publish package to PyPi
9193
uses: pypa/gh-action-pypi-publish@release/v1
9294
with:

.github/workflows/create_release_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Update version and push
3131
id: make-commit
3232
run: |
33-
sed -i 's/version\ =\ "[0-9]\+\.[0-9]\+\.[0-9]\+"/version="${{ github.event.inputs.versionName }}"/g' pyproject.toml
33+
sed -i 's/version\ =\ "[0-9]\+\.[0-9]\+\.[0-9]\+"/version\ =\ "${{ github.event.inputs.versionName }}"/g' pyproject.toml
3434
git add pyproject.toml
3535
git commit -S --message "Prepare release ${{ github.event.inputs.versionName }}"
3636
echo "commit=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT"

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.1.1"
3030

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

0 commit comments

Comments
 (0)