From 32bbddc24567c7895ccdbd194eaa0d961ad62fc2 Mon Sep 17 00:00:00 2001 From: xyny <60004820+xynydev@users.noreply.github.com> Date: Sun, 28 Jul 2024 10:14:10 +0000 Subject: [PATCH] chore: wait 1m before starting website deploy after schema build --- .github/workflows/trigger-rebuilds.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/trigger-rebuilds.yml b/.github/workflows/trigger-rebuilds.yml index 734adb2..70db3fd 100644 --- a/.github/workflows/trigger-rebuilds.yml +++ b/.github/workflows/trigger-rebuilds.yml @@ -15,5 +15,6 @@ jobs: runs-on: ubuntu-latest if: github.repository == 'blue-build/modules' steps: - - run: echo "website:" && curl -X POST -d {} ${{ secrets.WEBSITE_DEPLOY_HOOK }} - run: echo "schemas:" && curl -X POST -d {} ${{ secrets.SCHEMAS_DEPLOY_HOOK }} + - run: sleep 1m + - run: echo "website:" && curl -X POST -d {} ${{ secrets.WEBSITE_DEPLOY_HOOK }}