File tree Expand file tree Collapse file tree 2 files changed +28
-1
lines changed
Expand file tree Collapse file tree 2 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " django-postgres-composite-types"
3- version = " 0.4.2 "
3+ version = " 1.0.0-beta.0 "
44description = " Postgres composite types support for Django"
55authors = [" Danielle Madeley <danielle@madeley.id.au>" ]
66license = " BSD"
You can’t perform that action at this time.
0 commit comments