-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yaml
More file actions
49 lines (43 loc) · 1.38 KB
/
action.yaml
File metadata and controls
49 lines (43 loc) · 1.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: 'mittwald mStudio container deployment'
description: 'Update a mStudio container stack using the official API client and a YAML-based configuration'
author: 'mittwald'
branding:
icon: 'upload-cloud'
color: 'blue'
runs:
using: 'docker'
image: 'docker://ghcr.io/mittwald/deploy-container-action:v1'
inputs:
api_token:
description: >
An mStudio API token. See https://developer.mittwald.de/docs/v2/api/intro/
on how to obtain an API token.
required: true
stack_id:
description: >
The ID of the mStudio container stack to deploy. See
https://developer.mittwald.de/docs/v2/api/howtos/create-container/
on how to determine this ID.
required: true
skip_recreation:
description: >
Comma-separated list of services that should NOT be recreated after patching the stack
required: false
stack_yaml:
description: 'Multiline YAML containing both services and volumes'
required: false
stack_file:
description: 'Path to stack.yaml file containing both services and volumes'
required: false
services_yaml:
description: 'Multiline YAML input for services'
required: false
services_file:
description: 'Path to services.yaml'
required: false
volumes_yaml:
description: 'Multiline YAML input for volumes'
required: false
volumes_file:
description: 'Path to volumes.yaml'
required: false