Skip to content

Commit 18db939

Browse files
committed
Fix workflow: Add release trigger and checkout tag for publishing
- Add release event trigger to workflow - Checkout the release tag instead of branch - Ensure publish job runs when release is published
1 parent 37b651b commit 18db939

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ on:
55
branches: [ main, develop ]
66
pull_request:
77
branches: [ main, develop ]
8+
release:
9+
types: [ published ]
810

911
jobs:
1012
test:

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ def read_requirements():
1616
return [line.strip() for line in fh if line.strip() and not line.startswith("#")]
1717

1818
setup(
19-
name="licensechain-python-sdk",
20-
version="1.0.0",
21-
author="LicenseChain Team",
19+
name="licensechain-sdk",
20+
version="1.1.1",
21+
author="LicenseChain",
2222
author_email="support@licensechain.app",
2323
description="Official LicenseChain Python SDK for license management and validation",
2424
long_description=read_readme(),

0 commit comments

Comments
 (0)