Skip to content

Commit 0e27625

Browse files
authored
Build package in release action. (#205)
1 parent c249184 commit 0e27625

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/publish.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,10 @@ jobs:
4242
permissions:
4343
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
4444
steps:
45-
- name: Publish package distributions to PyPI
46-
uses: pypa/gh-action-pypi-publish@release/v1
45+
- name: build
46+
run: |
47+
python -m pip install build
48+
python -m pip install --upgrade build
49+
python -m build
50+
- name: Publish package distributions to PyPI
51+
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)