mirror of
https://codeberg.org/JasterV/spazio-solazzo.git
synced 2026-04-27 02:25:40 +00:00
16 lines
261 B
YAML
16 lines
261 B
YAML
when:
|
|
event: push
|
|
branch: main
|
|
|
|
depends_on:
|
|
- ci
|
|
|
|
steps:
|
|
deploy:
|
|
image: alpine:latest
|
|
environment:
|
|
DEPLOY_URL:
|
|
from_secret: COOLIFY_DEPLOY_WEBHOOK
|
|
commands:
|
|
- apk add --no-cache curl
|
|
- curl -X POST "$${DEPLOY_URL}"
|