Files
electricityalert/.drone.yml
Urban Modig afcbcbaf12
All checks were successful
continuous-integration/drone/push Build is passing
.drone.yml
2025-09-12 13:14:53 +02:00

29 lines
634 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: debug registry secrets
image: alpine
environment:
USERNAME:
from_secret: docker_username
PASSWORD:
from_secret: docker_password
TEST:
from_secret: test
commands:
- echo $TEST
- echo $USERNAME
- echo $PASSWORD
- name: build and push electricityalert image
image: plugins/docker
settings:
repo: rubble.se:5000/urmo/electricityalert
registry: rubble.se:5000
tags: latest
username:
from_secret: docker_username
password:
from_secret: docker_password