From 1f4386ce6324eaee0bb983f40dcf4e2f0f4d6825 Mon Sep 17 00:00:00 2001 From: Zpekii Date: Sat, 10 Jan 2026 16:55:24 +0800 Subject: [PATCH] feat: add echo statement before applying Kubernetes deployment in workflow --- .gitea/workflows/deploy.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 7e18bd9..629f944 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -64,5 +64,6 @@ jobs: cd ${{ gitea.workspace }} sed -i "s|localhost:8180/k8s-example/k8s-example:latest|localhost:8180/k8s-example/k8s-example:${{ gitea.sha }}|g" deployment.yaml cat deployment.yaml + echo "Applying Kubernetes deployment..." kubectl apply -f deployment.yaml - run: echo "🍏 This job's status is ${{ job.status }}." \ No newline at end of file