forked from MJAISE/laravel-deploy-migrate-cache
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
37 lines (35 loc) · 881 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
name: 'Laravel Deploy X'
description: 'Deploy Laravel Application to Server via SSH by RSync'
author: 'MJA'
branding:
icon: 'send'
color: 'green'
inputs:
user:
description: 'Deploy user'
required: true
host:
description: 'Deploy host'
required: true
port:
description: 'Deploy port'
required: false
path:
description: 'Path source on server'
required: true
owner:
description: 'Deploy owner'
required: true
commands:
description: 'Command to run after default artisan commands'
required: false
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.user }}
- ${{ inputs.host }}
- ${{ inputs.port }}
- ${{ inputs.path }}
- ${{ inputs.owner }}
- ${{ inputs.commands }}