forked from vieter-v/vieter
19 lines
330 B
YAML
19 lines
330 B
YAML
|
branches: [ 'dev' ]
|
||
|
platform: 'linux/amd64'
|
||
|
depends_on:
|
||
|
- 'docker'
|
||
|
|
||
|
skip_clone: true
|
||
|
|
||
|
pipeline:
|
||
|
webhooks:
|
||
|
image: 'curlimages/curl'
|
||
|
secrets:
|
||
|
- 'webhook_app'
|
||
|
- 'webhook_cron'
|
||
|
commands:
|
||
|
- 'curl -XPOST -s --fail $WEBHOOK_APP'
|
||
|
- 'curl -XPOST -s --fail $WEBHOOK_CRON'
|
||
|
when:
|
||
|
event: push
|