We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13d1dcd commit ce8a1c9Copy full SHA for ce8a1c9
.github/actions/pack_binaries/action.yml
@@ -23,6 +23,14 @@ runs:
23
category: ${{ inputs.category }}
24
path: distro/bin
25
artifacts: metactl,meta,query,query.debug
26
+ - name: Download BendSQL
27
+ shell: bash
28
+ env:
29
+ GH_TOKEN: ${{ github.token }}
30
+ run: |
31
+ verison=$(gh release list --repo databendlabs/bendsql | head -n 1 | awk '{print $1}')
32
+ curl -sSLfo /tmp/bendsql.tar.gz https://github.com/databendlabs/bendsql/releases/download/${verison}/bendsql-${verison}-${{ inputs.target }}.tar.gz
33
+ tar -xzvf /tmp/bendsql.tar.gz -C distro/bin
34
- name: Pack Binaries
35
id: pack_binaries
36
shell: bash
0 commit comments