20 lines
479 B
YAML
20 lines
479 B
YAML
name: Reload Act Runner Stack to clear cache for workflows
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
jobs:
|
|
deploy-gitainer:
|
|
- name: Check status step
|
|
id: check-step
|
|
if: success()
|
|
run: echo "Workflow successful"
|
|
|
|
- name: Reload Gitea Act Runner - Gitainer
|
|
continue-on-error: true
|
|
if: always()
|
|
uses: martin/chromart-gitea-actions/.gitea/workflows/gitainer-deploy.yaml@main
|
|
with:
|
|
workflow-status: ${{ steps.check-step.outcome }}
|