workflows: Fix tag name for release sources job (#100752)

This commit is contained in:
Tom Stellard 2024-07-26 07:38:53 -07:00 committed by GitHub
parent 3113bfbfa7
commit 3c2ce70888
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -47,7 +47,7 @@ jobs:
steps:
- id: inputs
run: |
ref=${{ inputs.release-version || github.sha }}
ref=${{ (inputs.release-version && format('llvmorg-{0}', inputs.release-version)) || github.sha }}
if [ -n "${{ inputs.release-version }}" ]; then
export_args="-release ${{ inputs.release-version }} -final"
else