We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89b6d02 commit df89407Copy full SHA for df89407
.github/actions/publish_debug_symbols/action.yml
@@ -32,8 +32,11 @@ runs:
32
shell: bash
33
run: |
34
publish_name="databend-debug-${{ inputs.category }}-${{ inputs.version }}-${{ inputs.target }}.tar.gz"
35
- tar -C distro/bin -czvf ${publish_name} databend-query.debug
36
- echo "name=$publish_name" >> $GITHUB_OUTPUT
+ symbol_name="databend-query-${{ inputs.category }}-${{ inputs.version }}-${{ inputs.target }}.debug"
+ mv "distro/bin/databend-query.debug" "distro/bin/${symbol_name}"
37
+ tar -C distro/bin -czvf "${publish_name}" "${symbol_name}"
38
+ rm "distro/bin/${symbol_name}"
39
+ echo "name=${publish_name}" >> $GITHUB_OUTPUT
40
41
- name: Update debug symbols to github
42
0 commit comments