[llvm] workflows/release-binaries: Pass missing release-version input to upload-release-artifact (PR #180879)

Tom Stellard via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 10 19:58:11 PST 2026


https://github.com/tstellar created https://github.com/llvm/llvm-project/pull/180879

This was causing the 22.1.0-rc3 uploads to fail.

>From 11fa3ed62b0a870a00d6779644396f9ec3b3dfa5 Mon Sep 17 00:00:00 2001
From: Tom Stellard <tstellar at redhat.com>
Date: Tue, 10 Feb 2026 19:56:27 -0800
Subject: [PATCH] workflows/release-binaries: Pass missing release-version
 input to upload-release-artifact

This was causing the 22.1.0-rc3 uploads to fail.
---
 .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-commits mailing list