File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 4040 - name : Create tag if missing
4141 id : tag
4242 run : |
43- git config user.name "github-actions"
44- git config user.email "github-actions@github.com"
43+ # Configure Git user/email for tags
44+ git config --global user.name "github-actions"
45+ git config --global user.email "github-actions@github.com"
46+
47+ # Create tag only if it does not exist
4548 if ! git rev-parse "v$VERSION" >/dev/null 2>&1; then
4649 echo "Tag v$VERSION not found. Creating tag..."
4750 git tag -a "v$VERSION" -m "Release v$VERSION"
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
88
99[project ]
1010name = " pixelcore"
11- version = " 0.0.3 "
11+ version = " 0.0.4 "
1212description = " Core image and video processing primitives"
1313readme = " README.md"
1414requires-python = " >=3.9"
You can’t perform that action at this time.
0 commit comments