Skip to content

Commit

Permalink
workflows: Fix incorrect input name in release-binaries.yml (#84604)
Browse files Browse the repository at this point in the history
In aa02002 the input name was changed
from tag to release-version, but the code was never updated.

(cherry picked from commit 8d220d1)
  • Loading branch information
tstellar committed May 9, 2024
1 parent 0ec1bc4 commit 211cdc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 211cdc6

Please sign in to comment.