[llvm] workflows: Fix incorrect input name in release-binaries.yml (PR #84604)
via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 8 21:24:10 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-github-workflow
Author: Tom Stellard (tstellar)
<details>
<summary>Changes</summary>
In aa02002491333c42060373bc84f1ff5d2c76b4ce the input name was changed from tag to release-version, but the code was never updated.
---
Full diff: https://github.com/llvm/llvm-project/pull/84604.diff
1 Files Affected:
- (modified) .github/workflows/release-binaries.yml (+2-2)
``````````diff
diff --git a/.github/workflows/release-binaries.yml b/.github/workflows/release-binaries.yml
index 1dba91746dae5a..131ad3004f4577 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.
``````````
</details>
https://github.com/llvm/llvm-project/pull/84604
More information about the llvm-commits
mailing list