Packaging script

This commit is contained in:
2025-04-27 21:03:41 +02:00
parent 26df951101
commit 4793e27012
4 changed files with 23 additions and 2 deletions

13
frontend/package.sh Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env sh
echo "./gradlew clean"
./gradlew clean
echo "./gradlew packageAppImage"
./gradlew packageAppImage
echo "./gradlew wasmJsBrowserDistribution"
./gradlew wasmJsBrowserDistribution
echo "tar -czf simd-frontend@linux.tar.gz -C composeApp/build/compose/binaries/main/app/ com.jaytux.simd.frontend"
tar -czf simd-frontend@linux.tar.gz -C composeApp/build/compose/binaries/main/app/ com.jaytux.simd.frontend
echo "tar -czf simd-frontend@web.tar.gz -C composeApp/build/dist/wasmJs productionExecutable"
tar -czf simd-frontend@web.tar.gz -C composeApp/build/dist/wasmJs productionExecutable