Skip to content

Commit

Permalink
release: v1.0.0-beta.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danni committed Dec 14, 2022
1 parent 01448c3 commit 8392315
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: pypi

on:
release:
types:
- created

jobs:
release:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"

- name: Install poetry
run: curl -sSL https://install.python-poetry.org | python3 -

# - name: Verify tag matches what's in pyproject.toml
# run: test "v$(poetry version --short)" = "$(git describe)"

- name: Publish package
run: poetry publish --build -n
env:
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "django-postgres-composite-types"
version = "0.4.2"
version = "1.0.0-beta.0"
description = "Postgres composite types support for Django"
authors = ["Danielle Madeley <danielle@madeley.id.au>"]
license = "BSD"
Expand Down

0 comments on commit 8392315

Please sign in to comment.