[llvm] release-tasks: Disable lit publishing for release candidates (PR #214972)

via llvm-commits llvm-commits at lists.llvm.org
Sat Aug 8 08:01:23 PDT 2026


llvmorg-github-actions[bot] wrote:


<!--LLVM PR SUMMARY COMMENT-->

@llvm/pr-subscribers-github-workflow

Author: Tom Stellard (tstellar)

<details>
<summary>Changes</summary>

There is no rc in the lit version string, so release candiates get published using the non-rc version number.

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


1 Files Affected:

- (modified) .github/workflows/release-tasks.yml (+1) 


``````````diff
diff --git a/.github/workflows/release-tasks.yml b/.github/workflows/release-tasks.yml
index 932a9ffbe8601..1a68a12c256bb 100644
--- a/.github/workflows/release-tasks.yml
+++ b/.github/workflows/release-tasks.yml
@@ -103,6 +103,7 @@ jobs:
       id-token: write # Requred for pypi publishing
     needs:
       - validate-tag
+    if: ${{ !contains(inputs.release-version, 'rc') }}
     environment: pypi
     steps:
       - name: Checkout LLVM

``````````

</details>


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


More information about the llvm-commits mailing list