-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
48 lines (47 loc) · 1.24 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
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: ''
release-version:
description: 'If release, latest link needs to be newly created.'
required: false
default: '0.0.0'
link-path:
description: 'Path for the symbolic link to latest release.'
required: false
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
- ${{ inputs.release-version }} #7
- ${{ inputs.link-path }} #8