From 4d78035e78ab6ae679255e710029948c24e06d95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Mrozek?= Date: Wed, 23 Nov 2022 19:20:38 +0100 Subject: [PATCH] build: fix release folder content --- prepare-release.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/prepare-release.sh b/prepare-release.sh index 6dd96ad..e01d935 100755 --- a/prepare-release.sh +++ b/prepare-release.sh @@ -16,10 +16,12 @@ VERSION=$(git describe --tags) mkdir -p /tmp/release/x86_64 cp target/release/lldap /tmp/release/x86_64 -cp -R app/index.html app/main.js app/pkg lldap_config.docker_template.toml README.md LICENSE /tmp/release/x86_64 +cp -R app/index.html app/main.js app/pkg app/static /tmp/release/x86_64/app +cp -R lldap_config.docker_template.toml README.md LICENSE /tmp/release/x86_64 tar -czvf lldap-x86_64-${VERSION}.tar.gz /tmp/release/x86_64 mkdir -p /tmp/release/armv7 cp target/armv7-unknown-linux-musleabihf/release/lldap /tmp/release/armv7 -cp -R app/index.html app/main.js app/pkg lldap_config.docker_template.toml README.md LICENSE /tmp/release/armv7 +cp -R app/index.html app/main.js app/pkg app/static /tmp/release/armv7/app +cp -R lldap_config.docker_template.toml README.md LICENSE /tmp/release/armv7 tar -czvf lldap-armv7-${VERSION}.tar.gz /tmp/release/armv7