File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ local debian = 'bookworm-slim';
44local python = '3.12-slim-bookworm' ;
55local bootstrap = '25.02' ;
66
7- local build(arch) = {
7+ local build(arch, deb_arch ) = {
88 kind: "pipeline" ,
99 name: arch,
1010
@@ -86,7 +86,7 @@ local build(arch) = {
8686 commands: [
8787 "VERSION=$(cat version)" ,
8888 "pip install s3cmd" ,
89- "./.syncloud/upload.sh $DRONE_BRANCH $VERSION " + name + "-$VERSION-$(dpkg-architecture -q DEB_HOST_ARCH) .tar.gz"
89+ "./.syncloud/upload.sh $DRONE_BRANCH $VERSION " + name + "-$VERSION-" + deb_arch+ " .tar.gz"
9090 ],
9191 when: {
9292 branch: ["stable" , "master" ],
@@ -228,7 +228,7 @@ local build(arch) = {
228228};
229229
230230[
231- build("amd64" ),
232- build("arm64" ),
233- build("arm" )
231+ build("amd64" , "amd64" ),
232+ build("arm64" , "arm64" ),
233+ build("arm" , "armhf" )
234234]
You can’t perform that action at this time.
0 commit comments