ci: move 'Notify start' after Checkout — script needs the workspace

This commit is contained in:
2026-04-25 03:05:25 +03:00
parent f04837bf99
commit 1fd7d2be22
2 changed files with 8 additions and 8 deletions
+4 -4
View File
@@ -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:
+4 -4
View File
@@ -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: |