From 891c601466e96642923bcfa7e668f1c87dbb5ac0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=C3=ABl=20Cluseau?= Date: Fri, 17 Jul 2026 14:27:32 +0200 Subject: [PATCH] also release dls --- release.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/release.sh b/release.sh index ea49aa4..c769ccd 100755 --- a/release.sh +++ b/release.sh @@ -8,9 +8,11 @@ publish() { arch=$1 pf=$2 + for bin in dkl dls; do curl --user $(jq '.auths["novit.tech"].auth' ~/.docker/config.json -r |base64 -d) \ - --upload-file <(docker run --rm --platform $pf $repo cat /bin/dkl) \ - https://novit.tech/api/packages/direktil/generic/dkl/$tag/dkl.$arch + --upload-file <(docker run --rm --platform $pf $repo cat /bin/$bin) \ + https://novit.tech/api/packages/direktil/generic/dkl/$tag/$bin.$arch + done } publish x86_64 linux/amd64