Files
react-native-video/scripts/release.sh
2025-08-26 18:02:16 +02:00

33 lines
823 B
Bash
Executable File

#!/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 "[DRM Plugin] Publishing drm plugin"
read -p "[DRM Plugin] Do you want to release the DRM plugin? (y/n): " confirm
if [[ $confirm == "y" || $confirm == "Y" ]]; then
cd packages/drm-plugin
bun run release $@
cd ../..
else
echo "[DRM Plugin] Skipping DRM plugin release."
fi
echo "[React Native Video] Making Github Release"
bun run release:github $@
echo "[React Native Video] Done"