-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
38 lines (37 loc) · 951 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
32
33
34
35
36
37
38
name: 'Palladio Build Deploy'
description: 'Deployment of Palladio Project Build Artefacts'
inputs:
remote-user:
description: 'Remote host user'
required: true
default: ''
remote-host:
description: 'Remote host ip'
required: true
default: ''
remote-port:
description: 'Remote host port'
required: true
default: ''
server-ssh-key: #
description: 'SSH Key for deployment'
required: true
default: ''
local-source: #
description: 'Updatesite for deployment. If empty deployment is skipped'
required: false
default: ''
remote-target:
description: 'Remote host target path'
required: true
default: ''
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.remote-user }} #1
- ${{ inputs.remote-host }} #2
- ${{ inputs.remote-port }} #3
- ${{ inputs.server-ssh-key }} #4
- ${{ inputs.local-source }} #5
- ${{ inputs.remote-target }} #6