From 8c1b6cb4574e10c1d8a70041e4efd72ad93dcd01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?oliver=20k=C3=B6nig?= Date: Tue, 24 Feb 2026 22:19:22 +0000 Subject: [PATCH 1/3] ci(fix): TestPyPI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: oliver könig --- .github/workflows/build-test-publish-wheel.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-test-publish-wheel.yml b/.github/workflows/build-test-publish-wheel.yml index dd7b41f9e4..c706bd7f4b 100644 --- a/.github/workflows/build-test-publish-wheel.yml +++ b/.github/workflows/build-test-publish-wheel.yml @@ -54,7 +54,7 @@ jobs: python-package: megatron.bridge python-version: "3.10" packaging: uv - no-publish: ${{ !(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/r')) }} + no-publish: false # ${{ !startsWith(github.ref, 'refs/heads/r') }} has-src-dir: true skip-test-wheel: true custom-container: nvcr.io/nvidia/pytorch:25.11-py3 @@ -64,7 +64,7 @@ jobs: container-options: "--gpus all --runtime=nvidia" secrets: TWINE_USERNAME: __token__ - TWINE_PASSWORD: ${{ (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/r')) && secrets.SVC_PYPI_TOKEN || secrets.SVC_PYPI_TEST_TOKEN }} + TWINE_PASSWORD: ${{ secrets.SVC_PYPI_TEST_TOKEN }} SLACK_WEBHOOK: ${{ secrets.SLACK_CI_CHANNEL_WEBHOOK }} SLACK_WEBHOOK_ADMIN: ${{ secrets.SLACK_TEAM_GROUP_ID }} GH_TOKEN: ${{ secrets.PAT }} From 28570200e707222918990aae151ed01be54f84f1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?oliver=20k=C3=B6nig?= Date: Wed, 25 Feb 2026 08:48:09 +0000 Subject: [PATCH 2/3] remove debug MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: oliver könig --- .github/workflows/build-test-publish-wheel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-test-publish-wheel.yml b/.github/workflows/build-test-publish-wheel.yml index c706bd7f4b..f87481a071 100644 --- a/.github/workflows/build-test-publish-wheel.yml +++ b/.github/workflows/build-test-publish-wheel.yml @@ -54,7 +54,7 @@ jobs: python-package: megatron.bridge python-version: "3.10" packaging: uv - no-publish: false # ${{ !startsWith(github.ref, 'refs/heads/r') }} + no-publish: ${{ !startsWith(github.ref, 'refs/heads/r') }} has-src-dir: true skip-test-wheel: true custom-container: nvcr.io/nvidia/pytorch:25.11-py3 From 5b91e8eb6744e77098c411b47294d97da2927ffb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?oliver=20k=C3=B6nig?= Date: Wed, 25 Feb 2026 08:49:49 +0000 Subject: [PATCH 3/3] fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: oliver könig --- .github/workflows/build-test-publish-wheel.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-test-publish-wheel.yml b/.github/workflows/build-test-publish-wheel.yml index f87481a071..91f1d856cf 100644 --- a/.github/workflows/build-test-publish-wheel.yml +++ b/.github/workflows/build-test-publish-wheel.yml @@ -54,7 +54,7 @@ jobs: python-package: megatron.bridge python-version: "3.10" packaging: uv - no-publish: ${{ !startsWith(github.ref, 'refs/heads/r') }} + no-publish: ${{ !(github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/r')) }} has-src-dir: true skip-test-wheel: true custom-container: nvcr.io/nvidia/pytorch:25.11-py3