Some checks failed
Reload Act Runner Stack to clear cache for workflows / diff (push) Successful in 1m36s
Reload Act Runner Stack to clear cache for workflows / reload-primary (push) Successful in 6s
Reload Act Runner Stack to clear cache for workflows / reload-secondary (push) Failing after 11m16s
Reload Act Runner Stack to clear cache for workflows / pull-cache-secondary (push) Has been cancelled
41 lines
1.3 KiB
YAML
41 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' }}
|
|
runs-on: runner-secondary
|
|
steps:
|
|
- name: Force actions cache pull
|
|
uses: martin/chromart-gitea-actions/.gitea/workflows/diff-output.yaml@main
|
|
with:
|
|
files: 'nonexistent-file-to-force-cache-pull'
|