Skip to content

Commit 754445a

Browse files
committed
Add publish workflow
Signed-off-by: Fabrice Normandin <[email protected]>
1 parent 54048a2 commit 754445a

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

.github/workflows/publish.yml

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# This workflow will upload a Python Package using Poetry when a release is created
2+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
3+
4+
# This workflow uses actions that are not certified by GitHub.
5+
# They are provided by a third-party and are governed by
6+
# separate terms of service, privacy policy, and support
7+
# documentation.
8+
on:
9+
release:
10+
types: [published]
11+
workflow_dispatch:
12+
13+
jobs:
14+
publish:
15+
strategy:
16+
matrix:
17+
python-version: [3.11]
18+
os: [ubuntu-latest]
19+
runs-on: ${{ matrix.os }}
20+
environment: release
21+
steps:
22+
- uses: actions/checkout@v4
23+
24+
- name: Set up Python ${{ matrix.python-version }}
25+
uses: actions/setup-python@v4
26+
with:
27+
python-version: ${{ matrix.python-version }}
28+
29+
- name: Install poetry
30+
run: |
31+
python -m pip install --upgrade pip
32+
pip install poetry
33+
34+
- name: Install dependencies
35+
run: |
36+
poetry install
37+
poetry self add "poetry-dynamic-versioning[plugin]"
38+
poetry dynamic-versioning enable
39+
40+
- name: Publish package
41+
env:
42+
POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
43+
run: poetry publish --build

0 commit comments

Comments
 (0)