From 5d06f49880494fea348f42e6c3dac7e143679408 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 31 Jul 2026 11:18:45 +0000 Subject: [PATCH 1/3] Initial plan From ac35a073790286ce68b97b4ed24b94f29ef1bf37 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 31 Jul 2026 11:22:13 +0000 Subject: [PATCH 2/3] =?UTF-8?q?ci(deploy):=20=F0=9F=9A=80=20upload=20wheel?= =?UTF-8?q?s=20and=20sdist=20as=20GitHub=20release=20assets?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: robertodr <3708689+robertodr@users.noreply.github.com> --- .github/workflows/deploy.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 15559ec4..1aa382e9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -185,3 +185,26 @@ jobs: - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@v1.14.1 + + upload_release_assets: + name: Upload wheels and sdist to GitHub release + needs: + - build-sdist + - build-wheels + if: github.event_name == 'release' && github.event.action == 'published' + + runs-on: ubuntu-26.04 + permissions: + contents: write + + steps: + - uses: actions/download-artifact@v8.0.1 + with: + pattern: cibw-* + path: dist + merge-multiple: true + + - name: Upload wheels and sdist to release + run: gh release upload "${{ github.event.release.tag_name }}" dist/* --clobber + env: + GH_TOKEN: ${{ github.token }} From 27e64c2693da8a8b57b1bba68452ad655b0479eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roberto=20Di=20Remigio=20Eik=C3=A5s?= Date: Fri, 31 Jul 2026 15:41:31 +0200 Subject: [PATCH 3/3] Potential fix for pull request finding MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Signed-off-by: Roberto Di Remigio Eikås --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1aa382e9..29985db1 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -187,7 +187,7 @@ jobs: uses: pypa/gh-action-pypi-publish@v1.14.1 upload_release_assets: - name: Upload wheels and sdist to GitHub release + name: Attach wheels and sdist to GitHub release needs: - build-sdist - build-wheels