Compare commits

...

2 commits

Author SHA1 Message Date
2e085fc7c7 Merge pull request 'release: sync dev -> main (CI pipeline update)' (#2) from dev into main
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2026-05-30 22:51:08 +00:00
e858222deb ci: use dev branch and rename deploy step (#1)
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
2026-05-30 22:43:40 +00:00

View file

@ -11,8 +11,7 @@ variables:
when: when:
- event: [push, pull_request] - event: [push, pull_request]
branch: [main, develop] branch: [main, dev, feature/*]
- event: pull_request
steps: steps:
# ── Build & Test ────────────────────────────────────────────── # ── Build & Test ──────────────────────────────────────────────
@ -49,20 +48,20 @@ steps:
- event: push - event: push
branch: main branch: main
# ── Notify Coolify (deploy webhook) — develop only ──────────── # ── Notify Coolify (deploy webhook) — dev only ──────────────
- name: deploy-develop - name: deploy-dev
image: curlimages/curl:latest image: curlimages/curl:latest
environment: environment:
COOLIFY_WEBHOOK: COOLIFY_WEBHOOK:
from_secret: COOLIFY_WEBHOOK_DEVELOP from_secret: COOLIFY_WEBHOOK_DEV
COOLIFY_TOKEN: COOLIFY_TOKEN:
from_secret: COOLIFY_TOKEN from_secret: COOLIFY_TOKEN
commands: commands:
- > - >
curl -fsSX GET "$COOLIFY_WEBHOOK" curl -fsSX GET "$COOLIFY_WEBHOOK"
-H "Authorization: Bearer $COOLIFY_TOKEN" -H "Authorization: Bearer $COOLIFY_TOKEN"
&& echo "Coolify deploy triggered (develop)" && echo "Coolify deploy triggered (dev)"
|| echo "WARNING: Coolify webhook failed" || echo "WARNING: Coolify webhook failed"
when: when:
- event: push - event: push
branch: develop branch: dev