chore: prepare for release

This commit is contained in:
Krzysztof Moch
2025-06-30 18:49:11 +02:00
parent 2cc3430afb
commit 0f55a372bf
5 changed files with 33 additions and 75 deletions
+22
View File
@@ -0,0 +1,22 @@
#!/bin/bash
set -e
echo "[React Native Video] Starting release process"
echo "[React Native Video] Options: $@"
echo "[React Native Video] Checking if we are in the correct directory"
if [ ! -d "packages/react-native-video" ]; then
echo "[React Native Video] Error: Not in the correct directory"
exit 1
fi
echo "[React Native Video] Publishing main package"
cd packages/react-native-video
bun run release $@
cd ../..
echo "[React Native Video] Making Github Release"
bun run release:github $@
echo "[React Native Video] Done"