mirror of
https://github.com/zoriya/react-native-video.git
synced 2026-05-13 03:23:57 +00:00
22 lines
535 B
Bash
Executable File
22 lines
535 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 "[React Native Video] Making Github Release"
|
|
bun run release:github $@
|
|
|
|
echo "[React Native Video] Done" |