chromart-gitea-actions/.gitea/workflows/reload-act-runner.yaml
Martin Dimitrov b9b7537c3f
Some checks failed
Reload Act Runner Stack to clear cache for workflows / diff (push) Successful in 1m27s
Reload Act Runner Stack to clear cache for workflows / reload-primary (push) Successful in 4s
Reload Act Runner Stack to clear cache for workflows / reload-secondary (push) Successful in 59s
Reload Act Runner Stack to clear cache for workflows / pull-cache-secondary (push) Failing after 1m0s
timeout curl
2026-03-07 12:41:04 -08:00

39 lines
1.3 KiB
YAML

name: Reload Act Runner Stack to clear cache for workflows
on:
push:
branches: [main]
jobs:
diff:
uses: martin/chromart-gitea-actions/.gitea/workflows/diff-output.yaml@main
with:
files: .gitea/**
reload-primary:
needs: diff
if: ${{ needs.diff.outputs.is_changed == 'true' }}
uses: martin/chromart-gitea-actions/.gitea/workflows/gitainer-deploy.yaml@main
with:
stack_name: gitea_act_runner
# the secondary runner executes the primary restart webhook
runs_on_label: runner-secondary
reload-secondary:
needs: [diff, reload-primary]
if: ${{ needs.diff.outputs.is_changed == 'true' }}
# ensuring the primary actually survived and restarted successfully
uses: martin/chromart-gitea-actions/.gitea/workflows/gitainer-deploy.yaml@main
with:
stack_name: gitea_act_runner_secondary
# the primary runner executes the secondary restart webhook
runs_on_label: runner-primary
pull-cache-secondary:
needs: [diff, reload-secondary]
if: ${{ needs.diff.outputs.is_changed == 'true' }}
# Use the secondary runner (which is now done restarting) to prove it's alive and pull cache
uses: martin/chromart-gitea-actions/.gitea/workflows/pull-cache.yaml@main
with:
runs_on_label: runner-secondary