From fa46e7af6919d82ddccd6b73a8028515d291fc99 Mon Sep 17 00:00:00 2001 From: xyny <60004820+xynydev@users.noreply.github.com> Date: Sun, 27 Apr 2025 08:46:21 +0000 Subject: [PATCH] chore(ci): use hacky way of rebuilding website twice to ensure new modules don't need manual intervention to appear on the website --- .github/workflows/trigger-rebuilds.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/trigger-rebuilds.yml b/.github/workflows/trigger-rebuilds.yml index 70db3fd..586ea73 100644 --- a/.github/workflows/trigger-rebuilds.yml +++ b/.github/workflows/trigger-rebuilds.yml @@ -15,6 +15,8 @@ jobs: runs-on: ubuntu-latest if: github.repository == 'blue-build/modules' steps: - - 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 }} + - run: sleep 3m + - run: echo "schemas:" && curl -X POST -d {} ${{ secrets.SCHEMAS_DEPLOY_HOOK }} + - run: sleep 3m - run: echo "website:" && curl -X POST -d {} ${{ secrets.WEBSITE_DEPLOY_HOOK }}