webdav-go/.drone.yml
Lennard Brinkhaus 6e1b8368b7
All checks were successful
continuous-integration/drone/push Build is passing
Create .drone.yml
2022-01-10 17:35:28 +01:00

53 lines
902 B
YAML

kind: pipeline
name: build
type: kubernetes
steps:
- name: docker_webdav_1.21
image: plugins/docker
settings:
dockerfile: Dockerfile
registry: harbor.dragse.it
repo: harbor.dragse.it/base/webdav
tags:
- "1.21"
- "1.21.5"
- "latest"
username:
from_secret: repo_username
password:
from_secret: repo_password
- name: send telegram notification
image: appleboy/drone-telegram
settings:
token:
from_secret: tele_token
to:
from_secret: tele_user
---
kind: secret
name: repo_username
get:
path: repo-credentials
name: username
---
kind: secret
name: repo_password
get:
path: repo-credentials
name: password
---
kind: secret
name: tele_user
get:
path: telegram-notification
name: user_id
---
kind: secret
name: tele_token
get:
path: telegram-notification
name: token