File tree 4 files changed +9
-9
lines changed
4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 64
64
export deb_version="${{ steps.info.outputs.deb_version }}"
65
65
export deb_arch="${{ steps.info.outputs.deb_arch }}"
66
66
pkg_name="databend-query_${deb_version}_${deb_arch}.deb"
67
- nfpm pkg --packager deb -t "${path}/${pkg_name}" -f <(envsubst '${version } ${path } ${arch }' < scripts/distribution/nfpm-query.yaml)
67
+ nfpm pkg --packager deb -t "${path}/${pkg_name}" -f <(envsubst '${deb_arch } ${deb_version } ${path }' < scripts/distribution/nfpm-query.yaml)
68
68
69
69
- name : Build Databend Meta Package
70
70
shell : bash
74
74
export deb_version="${{ steps.info.outputs.deb_version }}"
75
75
export deb_arch="${{ steps.info.outputs.deb_arch }}"
76
76
pkg_name="databend-meta_${deb_version}_${deb_arch}.deb"
77
- nfpm pkg --packager deb -t "${path}/${pkg_name}" -f <(envsubst '${version } ${path } ${arch }' < scripts/distribution/nfpm-meta.yaml)
77
+ nfpm pkg --packager deb -t "${path}/${pkg_name}" -f <(envsubst '${deb_arch } ${deb_version } ${path }' < scripts/distribution/nfpm-meta.yaml)
78
78
79
79
- name : Build Databend Debug Package
80
80
shell : bash
84
84
export deb_version="${{ steps.info.outputs.deb_version }}"
85
85
export deb_arch="${{ steps.info.outputs.deb_arch }}"
86
86
pkg_name="databend-query-dbg_${deb_version}_${deb_arch}.deb"
87
- nfpm pkg --packager deb -t "${path}/${pkg_name}" -f <(envsubst '${version } ${path } ${arch }' < scripts/distribution/nfpm-query-dbg.yaml)
87
+ nfpm pkg --packager deb -t "${path}/${pkg_name}" -f <(envsubst '${deb_arch } ${deb_version } ${path }' < scripts/distribution/nfpm-query-dbg.yaml)
88
88
89
89
- name : Update release to github
90
90
shell : bash
Original file line number Diff line number Diff line change 1
1
name : " databend-meta"
2
- arch : " ${arch }"
2
+ arch : " ${deb_arch }"
3
3
platform : " linux"
4
- version : " ${version }"
4
+ version : " ${deb_version }"
5
5
section : " database"
6
6
priority : " extra"
7
7
maintainer :
" Databend Labs <[email protected] >"
Original file line number Diff line number Diff line change 1
1
name : " databend-query-dbg"
2
- arch : " ${arch }"
2
+ arch : " ${deb_arch }"
3
3
platform : " linux"
4
- version : " ${version }"
4
+ version : " ${deb_version }"
5
5
section : " database"
6
6
priority : " extra"
7
7
maintainer :
" Databend Labs <[email protected] >"
Original file line number Diff line number Diff line change 1
1
name : " databend-query"
2
- arch : " ${arch }"
2
+ arch : " ${deb_arch }"
3
3
platform : " linux"
4
- version : " ${version }"
4
+ version : " ${deb_version }"
5
5
section : " database"
6
6
priority : " extra"
7
7
maintainer :
" Databend Labs <[email protected] >"
You can’t perform that action at this time.
0 commit comments