Skip to content

Commit 46f8bea

Browse files
committed
fix workflow
1 parent c5245cb commit 46f8bea

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/python-publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Install dependencies and pytest
3232
run: |
3333
python -m pip install --upgrade pip
34-
pip install -e .[dev] pytest
34+
pip install -e ./python[dev] pytest
3535
3636
- name: Run tests
3737
run: pytest
@@ -49,9 +49,11 @@ jobs:
4949

5050
- name: Build release distributions
5151
run: |
52+
cd python
5253
python -m pip install build
53-
rm -rf dist/ build/ *.egg-info
54+
rm -rf dist/ build/ *.egg-info
5455
python -m build
56+
cd ..
5557
5658
- name: Upload distributions
5759
uses: actions/upload-artifact@v4

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55

66
[project]
77
name = "ume-logging"
8-
version = "0.0.4"
8+
version = "0.0.5"
99
description = "Uniform JSON logging for University Medicine Essen (UME)"
1010
readme = "README.md"
1111
authors = [{ name = "UME IT / IKIM", email = "felix.nensa@uk-essen.de" }]

0 commit comments

Comments
 (0)