Update '.drone.yml'
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
b6281004d5
commit
d1a4f69406
21
.drone.yml
21
.drone.yml
|
@ -3,8 +3,21 @@ type: docker
|
||||||
name: default
|
name: default
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: say-hello
|
- name: backend
|
||||||
image: busybox
|
image: composer
|
||||||
commands:
|
commands:
|
||||||
- echo hello-world
|
- cd backend && composer install
|
||||||
- echo $(pwd) $(id)
|
|
||||||
|
- name: frontend
|
||||||
|
image: node
|
||||||
|
commands:
|
||||||
|
- cd frontend && npm install && npm run build
|
||||||
|
|
||||||
|
- name: discord notification
|
||||||
|
image: appleboy/drone-discord
|
||||||
|
settings:
|
||||||
|
webhook_id:
|
||||||
|
from_secret: discord_webhook_id
|
||||||
|
webhook_token:
|
||||||
|
from_secret: discord_webhook_token
|
||||||
|
username: Drone
|
||||||
|
|
Loading…
Reference in New Issue