From 1b4afa25a36b8e1a6d6975015fdaf4ec11c67cb1 Mon Sep 17 00:00:00 2001 From: Olli Janatuinen Date: Wed, 9 Mar 2022 13:45:41 +0000 Subject: [PATCH] Sleep 30 seconds after creating release --- scripts/release-amd64 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/release-amd64 b/scripts/release-amd64 index 406f3b28..20cdac77 100755 --- a/scripts/release-amd64 +++ b/scripts/release-amd64 @@ -14,6 +14,8 @@ if [ "$OS_FIRMWARE" = "false" ]; then exit 0 else echo "github-release release --user burmilla --repo os --tag ${VERSION} --pre-release --draft" > dist/publish.sh + echo "echo Waiting 30 seconds after release creation to make sure that GitHub is ready for uploads" >> dist/publish.sh + echo "sleep 30s" >> dist/publish.sh echo "github-release upload --user burmilla --repo os --tag ${VERSION} --file ./dist/artifacts/burmillaos.iso --name burmillaos-${VERSION}.iso" >> dist/publish.sh