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 }}