Files
fullstack-portfolio/.woodpecker.yml
Moh Dzulfikri Maulana 0347bca2fe
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
feat: Add favicon and improve Woodpecker CI Telegram notification message formatting.
2026-03-10 10:51:26 +07:00

63 lines
1.6 KiB
YAML

steps:
# 1. Build & Push Image
build-and-push:
image: plugins/docker
settings:
registry: git.exavolt.web.id
repo: git.exavolt.web.id/fikri/fullstack-portfolio
dockerfile: Dockerfile
use_cache: true
username:
from_secret: gitea_user
password:
from_secret: gitea_token
when:
branch: master
event: push
# 2. Deploy via SSH
deploy:
image: appleboy/drone-ssh
settings:
host: 103.197.190.44
username: exavolt
port: 22
key:
from_secret: ssh_key
envs: [ GITEA_USER, GITEA_TOKEN ]
gitea_user:
from_secret: gitea_user
gitea_token:
from_secret: gitea_token
script:
- cd ~/projects/fikri-fullstack-portfolio
- echo $GITEA_TOKEN | docker login git.exavolt.web.id -u $GITEA_USER --password-stdin
- docker compose pull
- docker compose up -d --remove-orphans
- docker image prune -f
when:
branch: master
event: push
# 3.Telegram Notification
notify-telegram:
image: appleboy/drone-telegram
settings:
token:
from_secret: telegram_token
to:
from_secret: telegram_chat_id
thread_id: "8"
format: html
message: |
<b>🚀 Deployment {{ build.status | upper }}!</b>
<b>📦 Project:</b> <code>{{ repo.name }}</code>
<b>📝 Commit:</b> <i>{{ commit.message }}</i>
<b>👤 Author:</b> {{ commit.author }}
<b>🔗 <a href="{{ build.link }}">View Build Logs</a></b>
when:
- event: [push]
branch: master
status: [ success, failure ]