We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5901a0 commit 6e203a0Copy full SHA for 6e203a0
1 file changed
.github/workflows/pypi-publish.yml
@@ -29,12 +29,14 @@ jobs:
29
sed -i "s/%VERSION_PLACEHOLDER%/${VERSION}/g" python_licensing/setup.py
30
31
- name: Build package
32
- run: python -m build
+ run: |
33
+ python -m build
34
+ mkdir -p ../dist
35
+ mv dist/* ../dist/
36
working-directory: python_licensing
37
38
- name: Publish package
39
uses: pypa/gh-action-pypi-publish@release/v1
40
with:
41
user: __token__
42
password: ${{ secrets.PYPI_API_TOKEN }}
- path: python_licensing/dist/
0 commit comments