build: fix release folder content

This commit is contained in:
Michał Mrozek 2022-11-23 19:20:38 +01:00
parent 80fc94c4db
commit 4d78035e78
No known key found for this signature in database
GPG Key ID: 91FD36F93B3386F0

View File

@ -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