Skip to content

Commit

Permalink
Add messages to embedded_demos deploys
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Sep 4, 2024
1 parent d36af0e commit 0523cac
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions embedded_demos/deploy_demos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ set -e;
cd $JB2TMP
for i in jbrowse-react*; do
cd $i;
echo "DEPLOY $i";
yarn deploy;
echo "DONE DEPLOY $i"
cd -;
done;
cd -
3 changes: 2 additions & 1 deletion embedded_demos/push_demos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
cd $JB2TMP
for i in jbrowse-react*; do
cd $i;
echo `pwd`;
echo "PUSH $i";
git add yarn.lock;
git commit -m "Update yarn.lock"
git push;
echo "DONE PUSH $i"
cd -;
done;
cd -
2 changes: 2 additions & 0 deletions embedded_demos/update_demos.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ set -e;
cd $JB2TMP
for i in jbrowse-react*; do
cd $i;
echo "UPDATE $i";
git stash;
git pull;
yarn;
yarn upgrade;
echo "DONE UPDATE $i";
cd -;
done;
cd -

0 comments on commit 0523cac

Please sign in to comment.