Skip to content

Commit

Permalink
change Python build output directory (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
njzjz authored Oct 8, 2023
1 parent e512310 commit 4236407
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ jobs:
python-version: 3.11
- name: Install dependencies
run: python -m pip install build
- run: python -m build
- run: python -m build -o python_dist
- name: Publish a Python distribution to PyPI
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: python_dist/

0 comments on commit 4236407

Please sign in to comment.