aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Stellard <tstellar@redhat.com>2024-03-11 16:03:32 -0700
committerTom Stellard <tstellar@redhat.com>2024-05-08 19:47:50 -0700
commit211cdc65a1fbdcb18665e0076aa8aae43aa0d20e (patch)
tree1a3b87876e7639a0162dc0fbe1b70a2d71fd2997
parent0ec1bc454456d4cc1bc85d96b122fd9b73a937a8 (diff)
downloadllvm-211cdc65a1fbdcb18665e0076aa8aae43aa0d20e.tar.gz
workflows: Fix incorrect input name in release-binaries.yml (#84604)
In aa02002491333c42060373bc84f1ff5d2c76b4ce the input name was changed from tag to release-version, but the code was never updated. (cherry picked from commit 8d220d109d28dac352c563ab062fb72132b7eca1)
-rw-r--r--.github/workflows/release-binaries.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index 1dba91746dae..131ad3004f45 100644
--- a/.github/workflows/release-binaries.yml
+++ b/.github/workflows/release-binaries.yml
@@ -71,8 +71,8 @@ jobs:
# | X.Y.Z | -final
run: |
tag="${{ github.ref_name }}"
- trimmed=$(echo ${{ inputs.tag }} | xargs)
- [[ "$trimmed" != "" ]] && tag="$trimmed"
+ trimmed=$(echo ${{ inputs.release-version }} | xargs)
+ [[ "$trimmed" != "" ]] && tag="llvmorg-$trimmed"
if [ "$tag" = "main" ]; then
# If tag is main, then we've been triggered by a scheduled so pass so
# use the head commit as the tag.