From d8a25c8e1a2c906aa39e90dbf50ee98a3b9f4106 Mon Sep 17 00:00:00 2001 From: Idan Adar Date: Mon, 16 Mar 2026 08:24:18 +0200 Subject: [PATCH] patch: fix publishing --- .github/workflows/publish.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 172e494..e548eaa 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -7,7 +7,7 @@ on: jobs: publish: runs-on: ubuntu-latest - permissions: + permissions: contents: read steps: - uses: actions/checkout@v6 @@ -23,7 +23,7 @@ jobs: python -m pip install "setuptools<82" build wheel --user - name: Build a binary wheel and a source tarball run: | - python -m build --sdist --wheel --outdir dist/ . + python -m build --no-build-isolation --sdist --wheel --outdir dist/ . - name: Publish distribution to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: