Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
name: Publish to PyPI

on:
release:
types: [published]
workflow_dispatch:
push:
branches:
- main
tags:
- 'v*'
pull_request:
branches:
- main
Expand Down Expand Up @@ -98,7 +97,7 @@ jobs:
cp dist/*/*.whl final_dist/

- name: Publish to PyPI
if: github.event_name == 'release'
if: startsWith(github.ref, 'refs/tags/v')
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "webview_python"
version = "1.1.2"
version = "1.1.3"
description = "Python bindings for the webview library, which completely follow deno_webview design and principles"
readme = "README.md"
license = { file = "LICENSE" }
Expand Down
Loading