forked from roelmagdaleno/cloudways-api-git-pull-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
31 lines (31 loc) · 782 Bytes
/
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
name: 'Cloudways API Git Pull'
description: 'Github Action to deploy your project to Cloudways.'
branding:
icon: 'arrow-up-right'
color: 'blue'
inputs:
email:
description: 'Cloudways Account Email'
required: true
api-key:
description: 'Cloudways API Key'
required: true
server-id:
description: 'Cloudways Server ID'
required: true
app-id:
description: 'Cloudways App ID'
required: true
branch-name:
description: 'The Git branch you are pulling the changes'
required: true
deploy-path:
description: 'The path you are deploying the changes (ignore public_html string)'
required: true
default: ''
outputs:
operation:
description: 'The Cloudways API operation ID'
runs:
using: 'node12'
main: 'dist/index.js'