[llvm] workflows/release-task: Stop uploading lit to test.pypi.org (PR #214979)

via llvm-commits llvm-commits at lists.llvm.org
Sat Aug 8 08:51:37 PDT 2026


llvmorg-github-actions[bot] wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-github-workflow

Author: Tom Stellard (tstellar)

<details>
<summary>Changes</summary>

The gh-action-pypi-publish action only supports being run once per job.  Running it twice results in the second upload always failing. Rather than trying to create a complicated job structure to support uploading to test.pypi.org and pypi.org, we just remove the test.pypi.org upload for now.

---
Full diff: https://github.com/llvm/llvm-project/pull/214979.diff


1 Files Affected:

- (modified) .github/workflows/release-tasks.yml (-6) 


``````````diff
diff --git a/.github/workflows/release-tasks.yml b/.github/workflows/release-tasks.yml
index 932a9ffbe8601..a0582ffa3ca1a 100644
--- a/.github/workflows/release-tasks.yml
+++ b/.github/workflows/release-tasks.yml
@@ -143,12 +143,6 @@ jobs:
           path: |
             llvm/utils/lit/dist
 
-      - name: Upload lit to test.pypi.org
-        uses: pypa/gh-action-pypi-publish at cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
-        with:
-          repository-url: https://test.pypi.org/legacy/
-          packages-dir: llvm/utils/lit/dist/
-
       - name: Upload lit to pypi.org
         uses: pypa/gh-action-pypi-publish at cef221092ed1bacb1cc03d23a2d87d1d172e277b # v1.14.0
         with:

``````````

</details>


https://github.com/llvm/llvm-project/pull/214979


More information about the llvm-commits mailing list