deployphp/README.md

46 lines
1023 B
Markdown
Raw Permalink 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
uses: deployer/deploy@v1
with:
private-key: ${{ secrets.PRIVATE_KEY }}
known-hosts: ${{ secrets.KNOWN_HOSTS }}
dep: deploy prod -v
```
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
2020-11-13 20:47:43 +00:00
- `private-key` - Required. A private key to accessing servers.
- `known-hosts` - Optional. Host fingerprints. If omitted `StrictHostKeyChecking=no` will be used.
- `dep` - Required. Arguments to pass to Deployer command.
2020-11-13 20:45:33 +00:00
## Deployer version
First, the action will check for Deployer bin at those paths:
- `vendor/bin/dep`
- `bin/dep`
- `deployer.phar`
2020-11-13 20:46:12 +00:00
2020-11-13 20:45:33 +00:00
If bin not found, phar version will be downloaded.
2020-11-10 22:49:10 +00:00
## Example
```yaml
deploy:
name: Deploy to prod
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Setup PHP
uses: shivammathur/setup-php@master
with:
php-version: 7.4
- name: Deploy
2020-11-13 20:47:43 +00:00
uses: deployer/deploy@v1
2020-11-10 22:49:10 +00:00
with:
private-key: ${{ secrets.PRIVATE_KEY }}
known-hosts: ${{ secrets.KNOWN_HOSTS }}
dep: deploy prod -v
```