From cd12ac676db9c82d5389a56c8bd510d569702310 Mon Sep 17 00:00:00 2001 From: tracer Date: Tue, 24 Feb 2026 23:17:31 +0100 Subject: [PATCH] ci: add deploy start marker logging --- .gitea/workflows/commit.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.gitea/workflows/commit.yaml b/.gitea/workflows/commit.yaml index af82206..28ba771 100644 --- a/.gitea/workflows/commit.yaml +++ b/.gitea/workflows/commit.yaml @@ -10,6 +10,17 @@ jobs: if: gitea.ref_name == 'master' runs-on: self-hosted steps: + - name: Deploy start marker + run: | + echo "=== speedBB deploy started ===" + echo "time: $(date -u +'%Y-%m-%dT%H:%M:%SZ')" + echo "branch: ${{ gitea.ref_name }}" + echo "sha: ${{ gitea.sha }}" + echo "actor: ${{ gitea.actor }}" + echo "message: ${{ gitea.event.head_commit.message }}" + echo "runner: $(hostname)" + echo "==============================" + - name: Custom Checkout env: ANSIBLE_VAULT_PASSWORD: ${{ secrets.ANSIBLE_VAULT_PASSWORD }}