Files
ServiceUpdater/action.yml
Leon Hoppe f824789bbb
All checks were successful
Updater CI/CD / publish (push) Successful in 1m26s
Added action config
2026-02-24 19:17:56 +01:00

17 lines
358 B
YAML

name: "Call Service Updater"
description: "Triggers the internal updater service via HTTP"
author: "Leon Hoppe"
inputs:
service:
description: "Name of the service to update"
required: true
runs:
using: "composite"
steps:
- name: Call updater
shell: sh
run: |
curl -N "http://updater:5000/update/${{ inputs.service }}"