deployphp/action.yaml
2021-10-15 23:07:42 +02:00

56 lines
1.3 KiB
YAML

name: 'deployphp/action'
description: 'Deploy with Deployer'
inputs:
private-key:
required: true
description: >
Private key for connecting to remote hosts. To generate private key:
`ssh-keygen -o -t rsa -C 'action@deployer.org'`.
dep:
required: true
description: >
The deployer task to run. For example:
`deploy all`.
known-hosts:
required: false
default: ''
description: >
Content of `~/.ssh/known_hosts` file. The public SSH keys for a
host may be obtained using the utility `ssh-keyscan`. For example,
`ssh-keyscan deployer.org`.
If known-hosts omitted, `StrictHostKeyChecking no` will be added to
`ssh_config`.
ssh-config:
required: false
default: ''
description: >
The SSH configuration. Content of `~/.ssh/config` file.
deployer-version:
required: false
default: ''
description: >
Deployer version to download from deployer.org.
First, the action will check for Deployer binary at those paths:
- `vendor/bin/dep`
- `deployer.phar`
If the binary not found, phar version will be downloaded from
[deployer.org](https://deployer.org/download).
runs:
using: 'node12'
main: 'index.js'
branding:
color: blue
icon: send