We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9a8259 commit b7570cdCopy full SHA for b7570cd
1 file changed
.github/workflows/librdkafka.yml
@@ -51,8 +51,12 @@ jobs:
51
move ..\install\share\licenses\librdkafka\LICENSES.txt ..\install
52
ren ..\install\LICENSES.txt LICENSE
53
del /s /q ..\install\share
54
+ - name: Normalize version
55
+ id: normalize_version
56
+ shell: pwsh
57
+ run: echo "version=$('${{ github.event.inputs.version }}' -replace '^v')" >> $env:GITHUB_OUTPUT
58
- name: Upload artifacts
59
uses: actions/upload-artifact@v4
60
with:
- name: librdkafka-${{github.event.inputs.version}}-${{steps.virtuals.outputs.vs}}-${{matrix.arch}}
61
+ name: librdkafka-${{steps.normalize_version.outputs.version}}-${{steps.virtuals.outputs.vs}}-${{matrix.arch}}
62
path: install
0 commit comments