We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c92698 commit a9bf909Copy full SHA for a9bf909
1 file changed
.github/workflows/create-tag.yml
@@ -20,7 +20,12 @@ jobs:
20
- name: Get package version
21
run: |
22
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
26
MSG=$(git log $(git describe --tags --abbrev=0)..HEAD --oneline)
27
+ echo "Creating tag $VERSION with message:"
28
+ echo "$MSG"
29
git tag -a "$VERSION" -m "$MSG"
30
31
- name: Publish tags
0 commit comments