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: 4 additions & 3 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ jobs:
name: pypi
url: https://test.pypi.org/p/interbasepython
permissions:
id-token: write
id-token: write
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/download-artifact@v2
with:
Expand All @@ -64,12 +65,12 @@ jobs:
url: https://pypi.org/p/interbasepython
permissions:
id-token: write
if: startsWith(github.ref, 'refs/tags/v')
if: github.ref == 'refs/heads/main' && startsWith(github.ref, 'refs/tags/v')
steps:
- uses: actions/download-artifact@v2
with:
name: artifact
path: dist

- name: Publish package to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
uses: pypa/gh-action-pypi-publish@release/v1
2 changes: 1 addition & 1 deletion PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Metadata-Version: 1.1
Name: idb
Name: interbase
Version: 1.5.0
Summary: InterBase RDBMS bindings for Python.
Home-page: https://github.com/Embarcadero/InterBasePython
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ all-files = True


[metadata]
name = idb
name = interbase
version = 1.5.0
description = InterBase RDBMS bindings for Python.
long_description = file: README.md
Expand Down