Skip to content

Commit 36bea9c

Browse files
authored
Merge pull request #6 from congzhangzh/claude/bump-version-1.1.3-v4vub
Claude/bump version 1.1.3 v4vub
2 parents 3e7ed80 + edd4578 commit 36bea9c

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

.github/workflows/publish.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
name: Publish to PyPI
22

33
on:
4-
release:
5-
types: [published]
6-
workflow_dispatch:
74
push:
85
branches:
96
- main
7+
tags:
8+
- 'v*'
109
pull_request:
1110
branches:
1211
- main
@@ -98,7 +97,7 @@ jobs:
9897
cp dist/*/*.whl final_dist/
9998
10099
- name: Publish to PyPI
101-
if: github.event_name == 'release'
100+
if: startsWith(github.ref, 'refs/tags/v')
102101
env:
103102
TWINE_USERNAME: __token__
104103
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}

pyproject.toml

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

55
[project]
66
name = "webview_python"
7-
version = "1.1.2"
7+
version = "1.1.3"
88
description = "Python bindings for the webview library, which completely follow deno_webview design and principles"
99
readme = "README.md"
1010
license = { file = "LICENSE" }

0 commit comments

Comments
 (0)