Skip to content

Commit

Permalink
fix: trigger publish on release creation (#11)
Browse files Browse the repository at this point in the history
Changed the GitHub Actions workflow to trigger upon release creation instead of tag pushes. This ensures that the publishing process aligns with official release versions, improving the package distribution workflow.
  • Loading branch information
cedrictq authored Dec 3, 2024
1 parent cf35810 commit 17e7df1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: Publish wheels and conda packages

on:
push:
tags:
- v*
release:
types: [created]

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "keygen-py"
version = "0.1.3"
version = "0.1.4"
license = "MIT"
description = "Unofficial Keygen SDK for Python. Integrate license activation and offline licensing. Wrapper around keygen-rs rust crate"
requires-python = ">=3.9"
Expand Down

0 comments on commit 17e7df1

Please sign in to comment.