1
0
mirror of https://github.com/rancher/os.git synced 2025-08-25 17:59:17 +00:00

Sleep 30 seconds after creating release

This commit is contained in:
Olli Janatuinen 2022-03-09 13:45:41 +00:00 committed by Olli Janatuinen
parent 0dc7a00e0e
commit 1b4afa25a3

View File

@ -14,6 +14,8 @@ if [ "$OS_FIRMWARE" = "false" ]; then
exit 0 exit 0
else else
echo "github-release release --user burmilla --repo os --tag ${VERSION} --pre-release --draft" > dist/publish.sh 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 echo "github-release upload --user burmilla --repo os --tag ${VERSION} --file ./dist/artifacts/burmillaos.iso --name burmillaos-${VERSION}.iso" >> dist/publish.sh