Skip to content

Commit

Permalink
fixed release script
Browse files Browse the repository at this point in the history
  • Loading branch information
NadirJ committed May 30, 2024
1 parent e1440a0 commit 8f3d211
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ragstack/ragstack-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ else
exit 1
fi

remote_name=$(git remote -v | grep push | grep datastax/langflow.git | awk '{print $1}' | head -n 1)
remote_name=$(git remote -v | grep push | grep datastax/ragstack-ai-langflow.git | awk '{print $1}' | head -n 1)
if [ -z "$remote_name" ]; then
echo "Remote datastax/langflow.git not found"
echo "Remote datastax/ragstack-ai-langflow.git not found"
exit 1
fi
echo "Identified remote $remote_name"
Expand All @@ -41,4 +41,4 @@ git commit -am "Release $package $version"
git tag $tag
git push $remote_name ragstack-main
git push $remote_name $tag
echo "done."
echo "done."

0 comments on commit 8f3d211

Please sign in to comment.