-
Notifications
You must be signed in to change notification settings - Fork 459
45 lines (41 loc) · 1.26 KB
/
publish_pypi.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Publish to PyPi
on:
release:
types:
- released
jobs:
publish:
strategy:
fail-fast: true
matrix:
python-version: [ 3.8 ]
poetry-version: [ 1.3.2 ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # small repo so no biggie
fetch-tags: true
- name: Echo Git Tag
run: |
echo "Git tag: $(git describe --tags)"
- name: Set up Python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
- name: Run image
uses: abatilo/actions-poetry@v2
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Build and publish
run: |
poetry run pybabel compile --domain django --directory djoser/locale -f
poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
# alternative for the next release. Before, set version in pyproject to 0.0.0
# upload to test pypi first
# TAG=$(git describe --tags)
# VERSION=${TAG#v} # Remove "v" prefix if present
# poetry version $VERSION
poetry publish --build --no-interaction