deployphp/README.md

97 lines
2.4 KiB
Markdown
Raw Normal View History

2020-11-11 01:10:29 +00:00
# GitHub Action for Deployer
2020-11-10 22:49:10 +00:00
2020-11-13 20:47:43 +00:00
```yaml
- name: Deploy
2021-10-15 21:07:42 +00:00
uses: deployphp/action@v1
2020-11-13 20:47:43 +00:00
with:
2021-10-15 21:07:42 +00:00
dep: deploy
private-key: ${{ secrets.PRIVATE_KEY }}
2020-11-13 20:47:43 +00:00
```
2020-11-13 20:45:33 +00:00
2020-11-13 20:47:43 +00:00
## Inputs
2020-11-13 20:45:33 +00:00
2021-10-21 20:08:17 +00:00
```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 }}
2021-10-21 20:08:17 +00:00
# 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:
2022-03-19 17:21:46 +00:00
# - `vendor/bin/deployer.phar`
2021-10-21 20:08:17 +00:00
# - `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
2021-10-21 20:08:17 +00:00
```
2020-11-13 20:45:33 +00:00
2020-11-10 22:49:10 +00:00
## Example
```yaml
2021-10-21 20:08:17 +00:00
name: deploy
on: push
# It is important to specify "concurrency" for the workflow,
# to prevent concurrency between different deploys.
concurrency: production_environment
2021-10-15 21:07:42 +00:00
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 }}
2020-11-10 22:49:10 +00:00
```