mirror of
https://github.com/deployphp/action.git
synced 2024-11-23 04:19:02 +00:00
d12c16f961
+ This skips over the SSH configuration part of the action. + This is because self-hosted runners would typically have SSH already running causing ssh-agent command to throw an error (process already exists/port in use)
97 lines
2.4 KiB
Markdown
97 lines
2.4 KiB
Markdown
# GitHub Action for Deployer
|
|
|
|
```yaml
|
|
- name: Deploy
|
|
uses: deployphp/action@v1
|
|
with:
|
|
dep: deploy
|
|
private-key: ${{ secrets.PRIVATE_KEY }}
|
|
```
|
|
|
|
## Inputs
|
|
|
|
```yaml
|
|
- name: Deploy
|
|
uses: deployphp/action@v1
|
|
with:
|
|
# The deployer task to run. For example:
|
|
# `deploy all`.
|
|
# Required.
|
|
dep: deploy
|
|
|
|
# Option to skip over the SSH setup/configuration
|
|
# Self hosted runners don't need the SSH configuration or the SSH agent to be started
|
|
self-hosted: false
|
|
|
|
# Private key for connecting to remote hosts. To generate private key:
|
|
# `ssh-keygen -o -t rsa -C 'action@deployer.org'`.
|
|
# Optional.
|
|
private-key: ${{ secrets.PRIVATE_KEY }}
|
|
|
|
# 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`.
|
|
# Optional.
|
|
known-hosts: |
|
|
...
|
|
|
|
# The SSH configuration. Content of `~/.ssh/config` file.
|
|
# Optional.
|
|
ssh-config: |
|
|
...
|
|
|
|
# Deployer version to download from deployer.org.
|
|
# First, the action will check for Deployer binary at those paths:
|
|
# - `vendor/bin/deployer.phar`
|
|
# - `vendor/bin/dep`
|
|
# - `deployer.phar`
|
|
# If the binary not found, phar version will be downloaded from
|
|
# deployer.org.
|
|
# Optional.
|
|
deployer-version: "7.0.0"
|
|
|
|
# You can specify path to your local Deployer binary in the repo.
|
|
# Optional.
|
|
deployer-binary: "bin/dep"
|
|
|
|
# You can choose to disable ANSI output.
|
|
# Optional. Defaults to true.
|
|
ansi: false
|
|
|
|
# You can specify the output verbosity level.
|
|
# Optional. Defaults to -v.
|
|
verbosity: -vvv
|
|
```
|
|
|
|
## Example
|
|
|
|
```yaml
|
|
name: deploy
|
|
|
|
on: push
|
|
|
|
# It is important to specify "concurrency" for the workflow,
|
|
# to prevent concurrency between different deploys.
|
|
concurrency: production_environment
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: '8.0'
|
|
|
|
- name: Deploy
|
|
uses: deployphp/action@v1
|
|
with:
|
|
dep: deploy
|
|
private-key: ${{ secrets.PRIVATE_KEY }}
|
|
```
|