Skip to content

Commit 22f4b83

Browse files
committed
Fix build
1 parent 0d76c3d commit 22f4b83

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/publish.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,15 @@ jobs:
1818
id-token: write
1919
steps:
2020
- uses: actions/checkout@v4
21-
21+
- name: Set up Python
22+
uses: actions/setup-python@v5
23+
with:
24+
python-version: '3.8'
25+
- name: Install dependencies
26+
run: |
27+
pip install build
28+
- name: Build
29+
run: |
30+
python -m build
2231
- name: Publish package distributions to PyPI
2332
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)