Some checks failed
Reload Act Runner Stack to clear cache for workflows / deploy-gitainer (push) Failing after 3s
24 lines
563 B
YAML
24 lines
563 B
YAML
name: Reload Gitainer Stack
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
stack_name:
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
deploy-gitainer:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Check status step
|
|
id: check-step
|
|
if: success()
|
|
run: echo "Workflow successful"
|
|
|
|
- name: Call Gitainer stack webhooks
|
|
continue-on-error: true
|
|
run: curl --request POST http://192.168.1.150:9080/api/stacks/${{ inputs.stack_name }}?pretty &
|
|
with:
|
|
workflow-status: ${{ steps.check-step.outcome }}
|