forked from kosratdev/larave-deploy-migrate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
34 lines (31 loc) · 817 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
name: 'Laravel Deploy with Migrate and Cache Config'
description: 'Deploy Laravel Application to Server via SSH by RSync and then run migrations and Cache Configurations.'
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
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.user }}
- ${{ inputs.host }}
- ${{ inputs.port }}
- ${{ inputs.path }}
- ${{ inputs.owner }}