Skip to content
This repository has been archived by the owner on May 13, 2022. It is now read-only.

Commit

Permalink
Add 2 sec delay when we check for the latest tag during the release
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalandy committed Apr 30, 2022
1 parent 403f91b commit ecdb327
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions bashlava.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ function edge {
App_Is_required_apps_installed

# delete branch
git branch -D edge || true &&\
git branch -D edge || true
# delete branch so there is no need to use the github GUI to delete it
git push origin --delete edge || true &&\
git push origin --delete edge || true

git checkout -b edge &&\
git push --set-upstream origin edge -f &&\
git checkout -b edge
git push --set-upstream origin edge -f
my_message="<edge> was freshly branched out from ${default_branch}" App_Blue
}

Expand Down Expand Up @@ -124,7 +124,7 @@ function tag {
my_message="To quit the release notes: type ':qa + enter'" App_Warning && echo && sleep 1
gh release create &&\

App_Show_version &&\
App_Show_version && sleep 2
App_Show_release
}

Expand Down

0 comments on commit ecdb327

Please sign in to comment.