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
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: Upload release to PyPI
on:
workflow_dispatch:
release:
types:
- published

jobs:
pypi-publish:
Expand All @@ -17,8 +19,6 @@ jobs:
python-version: ">=3.12"
- run: |
pip install -r requirements-poetry.txt
git tag $(poetry version --short)
git push origin $(poetry version --short)
poetry self add poetry-version-plugin
poetry sync
poetry build
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 = "sql-compare"
version = "0.1.3"
version = "0"
description = "Compare SQL schemas"
authors = [{ name = "Charly Laurent", email = "[email protected]" }]
maintainers = [{ name = "Mergify", email = "[email protected]" }]
Expand Down