Skip to content

Commit f262f75

Browse files
committed
Bump version to 0.0.4 in pyproject.toml and update Git configuration for tag creation in GitHub Actions workflow
1 parent 8abe5d7 commit f262f75

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,11 @@ jobs:
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"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
88

99
[project]
1010
name = "pixelcore"
11-
version = "0.0.3"
11+
version = "0.0.4"
1212
description = "Core image and video processing primitives"
1313
readme = "README.md"
1414
requires-python = ">=3.9"

0 commit comments

Comments
 (0)