mirror of
https://github.com/Clortox/drone-ntfy.git
synced 2024-06-08 02:40:40 +00:00
Tyler Perkins
58d59d7aec
All checks were successful
continuous-integration/drone/push Build is passing
32 lines
683 B
YAML
32 lines
683 B
YAML
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: Build
|
|
image: plugins/docker
|
|
settings:
|
|
username:
|
|
from_secret: dockerhub_username
|
|
password:
|
|
from_secret: dockerhub_password
|
|
repo:
|
|
from_secret: dockerhub_repo
|
|
tags: latest
|
|
when:
|
|
branch:
|
|
- main
|
|
- name: notify
|
|
image: clortox/drone-ntfy
|
|
settings:
|
|
URL: https://ntfy.clortox.com
|
|
USERNAME: drone
|
|
PASSWORD:
|
|
from_secret: ntfy_password
|
|
TOPIC: drone-builds
|
|
MESSAGE: Drone-ntfy has finished building!
|
|
CLICK: https://drone.clortox.com/tyler/drone-ntfy
|
|
TITLE: Drone (drone-ntfy)
|
|
when:
|
|
branch:
|
|
- main
|