Skip to content

Commit 3c2ce70

Browse files
authored
workflows: Fix tag name for release sources job (#100752)
1 parent 3113bfb commit 3c2ce70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release-sources.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
steps:
4848
- id: inputs
4949
run: |
50-
ref=${{ inputs.release-version || github.sha }}
50+
ref=${{ (inputs.release-version && format('llvmorg-{0}', inputs.release-version)) || github.sha }}
5151
if [ -n "${{ inputs.release-version }}" ]; then
5252
export_args="-release ${{ inputs.release-version }} -final"
5353
else

0 commit comments

Comments
 (0)