[llvm-branch-commits] [llvm] release/22.x: workflows/release-binaries: Pass missing release-version input to upload-release-artifact (#180879) (PR #181285)

Cullen Rhodes via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Mon Feb 16 01:01:55 PST 2026


https://github.com/c-rhodes updated https://github.com/llvm/llvm-project/pull/181285

>From 8ebd354901281d4335af9bdc9025b6872ac03b8a Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Thu, 12 Feb 2026 17:07:19 -0800
Subject: [PATCH] workflows/release-binaries: Pass missing release-version
 input to upload-release-artifact (#180879)

This was causing the 22.1.0-rc3 uploads to fail.

(cherry picked from commit 127d77f7abe0b9c54562ee37ce474d99effa09c1)
---
 .github/workflows/release-binaries.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index a8188289412a0..1de66bdfe6f02 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -352,6 +352,7 @@ jobs:
       - name: Upload Artifacts
         uses: ./.github/workflows/upload-release-artifact
         with:
+          release-version: ${{ needs.prepare.outputs.release-version }}
           artifact-id: ${{ needs.build-release-package.outputs.artifact-id }}
           attestation-name: ${{ needs.prepare.outputs.attestation-name }}
           digest: ${{ needs.build-release-package.outputs.digest }}



More information about the llvm-branch-commits mailing list