Skip to content

Commit

Permalink
Update pre-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeykuzmich committed Sep 22, 2020
1 parent 9b3a677 commit 2bd3cb8
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/pre-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,14 @@ jobs:
egrep "RequestUUID" | \
egrep -o '[0-9a-f]{8}-([0-9a-f]{4}-){3}[0-9a-f]{12}' \
)
echo "Successfully uploaded UUID: $UUID"
STATUS="In Progress"
TRIES=1
echo "Wait for notarization..."
while [ STATUS != "Package Approved" ]
while [ $STATUS != "Package Approved" ]
do
echo "\tattempt $TRIES..."
if [[ TRIES == 30 ]]
echo "- attempt $TRIES..."
if [[ $TRIES == 30 ]]
then
exit 1
fi
Expand Down

0 comments on commit 2bd3cb8

Please sign in to comment.