mirror of
https://github.com/deployphp/action.git
synced 2024-11-23 04:19:02 +00:00
Update README.md
This commit is contained in:
parent
d4bc7eff8a
commit
2f29f33490
21
README.md
21
README.md
@ -1,2 +1,23 @@
|
|||||||
# action
|
# action
|
||||||
GitHub Action for Deployer
|
GitHub Action for Deployer
|
||||||
|
|
||||||
|
|
||||||
|
## 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
|
||||||
|
uses: deployphp/action@v1
|
||||||
|
with:
|
||||||
|
private-key: ${{ secrets.PRIVATE_KEY }}
|
||||||
|
known-hosts: ${{ secrets.KNOWN_HOSTS }}
|
||||||
|
dep: deploy prod -v
|
||||||
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user