From a8e8e176e98fb4a2ece6f373af3bbbcdbd8fbb70 Mon Sep 17 00:00:00 2001 From: Nader Al Awar Date: Thu, 29 Jan 2026 14:57:48 -0600 Subject: [PATCH 1/2] Fix pypi url to publish wheel --- .github/workflows/publish-wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-wheels.yml b/.github/workflows/publish-wheels.yml index 11d62e0..4241889 100644 --- a/.github/workflows/publish-wheels.yml +++ b/.github/workflows/publish-wheels.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest environment: name: ${{ inputs.wheel-dst }} - url: https://${{ (inputs.wheel-dst == 'testpypi' && 'test.') || '' }}pypi.org/p/cuda_bench/ + url: https://${{ (inputs.wheel-dst == 'testpypi' && 'test.') || '' }}pypi.org/p/cuda-bench/ permissions: id-token: write contents: read From bd775c8c141ec1b16d7889f316a40bd59d81d8eb Mon Sep 17 00:00:00 2001 From: Nader Al Awar Date: Thu, 29 Jan 2026 15:10:46 -0600 Subject: [PATCH 2/2] Use inputs.component for concistency with cuda-cccl --- .github/workflows/publish-wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-wheels.yml b/.github/workflows/publish-wheels.yml index 4241889..e7044ea 100644 --- a/.github/workflows/publish-wheels.yml +++ b/.github/workflows/publish-wheels.yml @@ -25,7 +25,7 @@ jobs: runs-on: ubuntu-latest environment: name: ${{ inputs.wheel-dst }} - url: https://${{ (inputs.wheel-dst == 'testpypi' && 'test.') || '' }}pypi.org/p/cuda-bench/ + url: https://${{ (inputs.wheel-dst == 'testpypi' && 'test.') || '' }}pypi.org/p/${{ inputs.component }}/ permissions: id-token: write contents: read