mirror of
https://github.com/Mintplex-Labs/langchainjs.git
synced 2026-07-01 12:17:38 -04:00
7 lines
137 B
Bash
7 lines
137 B
Bash
#!/usr/bin/env bash
|
|
|
|
if [[ $(git branch --show-current) == "main" ]]; then
|
|
git checkout -B release
|
|
git push -u origin release
|
|
fi
|