https://github.com/juzaweb/auto-deploy
Auto deployment using git and webhooks plugin
https://github.com/juzaweb/auto-deploy
deploy github-actions laravel laravel-cms laravel-framework laravel-package webhook
Last synced: 2 months ago
JSON representation
Auto deployment using git and webhooks plugin
- Host: GitHub
- URL: https://github.com/juzaweb/auto-deploy
- Owner: juzaweb
- Created: 2022-12-13T12:48:51.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-24T03:33:05.000Z (about 1 year ago)
- Last Synced: 2025-01-28T01:36:55.166Z (4 months ago)
- Topics: deploy, github-actions, laravel, laravel-cms, laravel-framework, laravel-package, webhook
- Language: PHP
- Homepage: https://juzaweb.com
- Size: 24.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
### Auto deployment using git and webhooks plugin
#### Set up Automated Deployments From GitHub With Webhook
* Setup config in file `.env`
```dotenv
DEPLOY_ENABLE=true
DEPLOY_GITHUB_SECRET=
```* Make drploy token, run command
```shell
php artisan deploy:make-token
```
* Set up command on build, make `.deploy.yml` in root your source folder.Example:
```yml
github-deploy:
commands:
- git pull
- composer install --no-dev
- php artisan migrate --force
```* Add a repository webhook on GitHub
To add a webhook to an existing repository, navigate to the GitHub repository page and go to "Settings" > "Webhooks". Click on "Add webhook".
- Payload URL — A custom domain that points to your server or your server's public IP, followed by
```
https://yourdomain.com/webhook/deploy/github/{action}/{token}
```**{action}**: Action define in your file `.deploy.yml`, example above, the action will be `github-deploy`
**{token}**: Your token created above
- Secret — A shared secret `DEPLOY_GITHUB_SECRET` in `.env`
- Which events would you like to trigger this webhook? (Default option: "Just the push event.")##### IF YOU WANT TO ADD CUSTOM PARAM TO YOUR COMMANDS ADD QUERY STRING TO WEBHOOK URL
Example:
Webhook Url:
```
https://yourdomain.com/webhook/deploy/github/{action}/{token}?theme=default
```In file `.deploy.yml`
```yml
github-deploy:
commands:
- cd themes/{theme}
- git pull
```