Skip to content

Commit a9bf909

Browse files
authored
Update create-tag.yml
1 parent 7c92698 commit a9bf909

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/create-tag.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,12 @@ jobs:
2020
- name: Get package version
2121
run: |
2222
VERSION=$(sed -n 's/^version = "\(.*\)"/\1/p' pyproject.toml)
23+
echo "pyproject.toml version: $VERSION"
24+
git config user.name github-actions
25+
git config user.email github-actions@github.com
2326
MSG=$(git log $(git describe --tags --abbrev=0)..HEAD --oneline)
27+
echo "Creating tag $VERSION with message:"
28+
echo "$MSG"
2429
git tag -a "$VERSION" -m "$MSG"
2530
2631
- name: Publish tags

0 commit comments

Comments
 (0)