From 1fd7d2be2211a430ff9485e014fb6a08bf19b10b Mon Sep 17 00:00:00 2001 From: gnezim Date: Sat, 25 Apr 2026 03:05:25 +0300 Subject: [PATCH] =?UTF-8?q?ci:=20move=20'Notify=20start'=20after=20Checkou?= =?UTF-8?q?t=20=E2=80=94=20script=20needs=20the=20workspace?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/ci-deploy.yml | 8 ++++---- .gitea/workflows/release.yml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/ci-deploy.yml b/.gitea/workflows/ci-deploy.yml index 138ee98e..166d926b 100644 --- a/.gitea/workflows/ci-deploy.yml +++ b/.gitea/workflows/ci-deploy.yml @@ -19,15 +19,15 @@ jobs: FLIGHTS_WEB_PORT: '8081' steps: - - name: Notify start - if: ${{ env.TELEGRAM_BOT_TOKEN != '' }} - run: scripts/ci/notify-telegram.sh start ci-deploy - - name: Checkout uses: actions/checkout@v4 with: fetch-depth: 0 + - name: Notify start + if: ${{ env.TELEGRAM_BOT_TOKEN != '' }} + run: scripts/ci/notify-telegram.sh start ci-deploy + - name: Setup Node.js uses: actions/setup-node@v4 with: diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index fca2059c..5679e9f2 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -24,15 +24,15 @@ jobs: TELEGRAM_CHAT_ID: ${{ secrets.TELEGRAM_CHAT_ID }} steps: - - name: Notify start - if: ${{ env.TELEGRAM_BOT_TOKEN != '' }} - run: scripts/ci/notify-telegram.sh start release - - name: Checkout (full history + tags) uses: actions/checkout@v4 with: fetch-depth: 0 + - name: Notify start + if: ${{ env.TELEGRAM_BOT_TOKEN != '' }} + run: scripts/ci/notify-telegram.sh start release + - name: Verify ci-deploy is green for this SHA id: gate run: |