22 lines
548 B
YAML
22 lines
548 B
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/**
|
|
|
|
deploy-gitainer:
|
|
needs: diff
|
|
if: ${{ needs.diff.outputs.is_changed == 'true' }}
|
|
continue-on-error: true
|
|
uses: martin/chromart-gitea-actions/.gitea/workflows/gitainer-deploy.yaml@main
|
|
with:
|
|
stack_name: gitea_act_runner
|
|
# use this because this action kills the runner
|
|
delayed_silent: true
|