Skip to content

Commit 8392315

Browse files
committed
release: v1.0.0-beta.0
1 parent 01448c3 commit 8392315

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

.github/workflows/pypi.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: pypi
2+
3+
on:
4+
release:
5+
types:
6+
- created
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: actions/setup-python@v4
15+
with:
16+
python-version: "3.10"
17+
18+
- name: Install poetry
19+
run: curl -sSL https://install.python-poetry.org | python3 -
20+
21+
# - name: Verify tag matches what's in pyproject.toml
22+
# run: test "v$(poetry version --short)" = "$(git describe)"
23+
24+
- name: Publish package
25+
run: poetry publish --build -n
26+
env:
27+
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "django-postgres-composite-types"
3-
version = "0.4.2"
3+
version = "1.0.0-beta.0"
44
description = "Postgres composite types support for Django"
55
authors = ["Danielle Madeley <danielle@madeley.id.au>"]
66
license = "BSD"

0 commit comments

Comments
 (0)