This repository has been archived by the owner on Dec 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
action.yml
77 lines (75 loc) · 2.43 KB
/
action.yml
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# action.yml
name: 'Qovery deploy'
description: 'Deploy on your Qovery projects'
author: Qovery <support@qovery.com>
branding:
icon: "upload-cloud"
color: "purple"
inputs:
qovery-api-token:
description: 'Qovery API token'
required: false
qovery-organization-id:
description: 'Qovery organization ID'
required: false
qovery-organization-name:
description: 'Qovery organization name'
required: false
qovery-project-id:
description: 'Qovery project ID'
required: false
qovery-project-name:
description: 'Qovery project name'
required: false
qovery-environment-id:
description: 'Qovery environment ID'
required: false
qovery-environment-name:
description: 'Qovery environment name'
required: false
qovery-application-ids:
description: 'Qovery application IDS'
required: false
qovery-application-commit-id:
description: 'Qovery app commit id'
required: false
qovery-application-names:
description: 'Qovery application names'
required: false
qovery-database-id:
description: 'Qovery database ID'
required: false
qovery-database-name:
description: 'Qovery database name'
required: false
qovery-container-ids:
description: 'Qovery container IDs, separated by `,`'
required: false
qovery-container-names:
description: 'Qovery container names, separated by `,`'
required: false
qovery-container-tags:
description: 'Qovery container tags, separated by `,`'
required: false
outputs:
environment-state:
description: 'Environment state on which app has been deployed'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- --org-id=${{ inputs.qovery-organization-id }}
- --org-name=${{ inputs.qovery-organization-name }}
- --project-id=${{ inputs.qovery-project-id }}
- --project-name=${{ inputs.qovery-project-name }}
- --env-id=${{ inputs.qovery-environment-id }}
- --env-name=${{ inputs.qovery-environment-name }}
- --app-ids=${{ inputs.qovery-application-ids }}
- --app-names=${{ inputs.qovery-application-names }}
- --app-commit-id=${{ inputs.qovery-application-commit-id }}
- --db-id=${{ inputs.qovery-database-id }}
- --db-name=${{ inputs.qovery-database-name }}
- --container-ids=${{ inputs.qovery-container-ids }}
- --container-names=${{ inputs.qovery-container-names }}
- --container-tags=${{ inputs.qovery-container-tags }}
- --api-token=${{ inputs.qovery-api-token }}