service-ntfy/.drone.yml
Glenn Y. Rolland 4623d8b7e9
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone Build encountered an error
ci: Add rules for build
2023-01-15 23:46:18 +01:00

45 lines
914 B
YAML

---
kind: pipeline
ype: docker
name: default
environment:
DOCKERHUB_USERNAME:
from_secret: DOCKERHUB_USERNAME
DOCKERHUB_PASSWORD:
from_secret: DOCKERHUB_PASSWORD
steps:
- name: docker
image: plugins/docker
settings:
username: ${DOCKERHUB_USERNAME}
password: ${DOCKERHUB_PASSWORD}
repo: glenux/service-ntfy
tags: ${DRONE_BRANCH//\//-}-${DRONE_COMMIT_SHA:0:8}
- name: docker
image: plugins/docker
settings:
username: ${DOCKERHUB_USERNAME}
password: ${DOCKERHUB_PASSWORD}
repo: glenux/service-ntfy
tags: latest_${DRONE_BRANCH}
when:
branch:
- master
- develop
- feature/*
- name: docker
image: plugins/docker
settings:
username: ${DOCKERHUB_USERNAME}
password: ${DOCKERHUB_PASSWORD}
repo: glenux/service-ntfy
tags: latest
when:
branch:
- master
#