Skip to content

Commit 6e203a0

Browse files
author
Franz Ludwig Kostelezky
committed
Update build and publish process
1 parent a5901a0 commit 6e203a0

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/pypi-publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@ jobs:
2929
sed -i "s/%VERSION_PLACEHOLDER%/${VERSION}/g" python_licensing/setup.py
3030
3131
- name: Build package
32-
run: python -m build
32+
run: |
33+
python -m build
34+
mkdir -p ../dist
35+
mv dist/* ../dist/
3336
working-directory: python_licensing
3437

3538
- name: Publish package
3639
uses: pypa/gh-action-pypi-publish@release/v1
3740
with:
3841
user: __token__
3942
password: ${{ secrets.PYPI_API_TOKEN }}
40-
path: python_licensing/dist/

0 commit comments

Comments
 (0)