17 lines
231 B
Bash
Executable File
17 lines
231 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
mkdir package
|
|
|
|
pushd backend
|
|
cargo build --release
|
|
cp -v target/release/nuchat ../package/
|
|
popd
|
|
|
|
pushd ui
|
|
pnpm run build
|
|
cp -rv .output ../package/ui
|
|
popd
|
|
|
|
tar -cf - package/ | zstd -19 -T0 -o package.tar.zst
|
|
|