From 54d1c08d1fd8bb786f06a75ada92e4df3ea2f560 Mon Sep 17 00:00:00 2001 From: BIBO <49994376+BIBOLV@users.noreply.github.com> Date: Sat, 31 Oct 2020 18:34:11 +0200 Subject: [PATCH] Update promote_snap.sh Change wait time from 50min to 2.5h --- .github/workflows/promote_snap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/promote_snap.sh b/.github/workflows/promote_snap.sh index caf8df4..e45412d 100644 --- a/.github/workflows/promote_snap.sh +++ b/.github/workflows/promote_snap.sh @@ -24,7 +24,7 @@ do snap_build_version="$(snapcraft status --arch $arch $SNAP_NAME | grep edge | awk '{print $2}')" c=0 - while [[ "$GIT_VER" != "$snap_build_version" && $c -lt 10 ]]; do + while [[ "$GIT_VER" != "$snap_build_version" && $c -lt 30 ]]; do echo "GIT release version "$GIT_VER" != snap latest edge version at snapcraft for $arch "$snap_build_version", iter : $c"; ((c = $c + 1)); sleep 300;