From 22f4b830de1603ef33db3cba6c36d8d0548cec5e Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Wed, 30 Oct 2024 13:47:33 -0400 Subject: [PATCH] Fix build --- .github/workflows/publish.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 6f4d854..528385f 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -18,6 +18,15 @@ jobs: id-token: write steps: - uses: actions/checkout@v4 - + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version: '3.8' + - name: Install dependencies + run: | + pip install build + - name: Build + run: | + python -m build - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 \ No newline at end of file