17 lines
358 B
YAML
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 }}"
|