From c825039295a29f9d38c2b8a06a419cae81c7dd7c Mon Sep 17 00:00:00 2001 From: Martin Dimitrov Date: Fri, 13 Dec 2024 20:27:51 -0800 Subject: [PATCH] always succeed this workflow --- .gitea/workflows/reload-act-runner.yaml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.gitea/workflows/reload-act-runner.yaml b/.gitea/workflows/reload-act-runner.yaml index 9c6f3b7..53e3b15 100644 --- a/.gitea/workflows/reload-act-runner.yaml +++ b/.gitea/workflows/reload-act-runner.yaml @@ -6,8 +6,16 @@ on: jobs: deploy-gitainer: - continue-on-error: true - uses: martin/chromart-gitea-actions/.gitea/workflows/gitainer-deploy.yaml@main - with: - stack_name: gitea_act_runner - \ No newline at end of file + - name: Check status step + id: check-step + if: success() + shell: bash + run: | + echo "Workflow successful" + + - name: Reload Gitea Act Runner - Gitainer + if: always() + continue-on-error: true + uses: martin/chromart-gitea-actions/.gitea/workflows/gitainer-deploy.yaml@main + with: + workflow-status: ${{ steps.check-step.outcome }}