Update .drone.yml
Some checks reported errors
continuous-integration/drone Build encountered an error

This commit is contained in:
2025-06-29 22:09:30 +02:00
parent 525202e03d
commit bb16797573

View File

@ -5,14 +5,20 @@ name: default
steps:
- name: debug registry secrets
image: alpine
secrets: [ docker_username, docker_password, test ]
environment:
USERNAME:
from_secret: docker_username
PASSWORD:
from_secret: docker_password
TEST
from_secret: test
commands:
- echo ${TEST}
- echo $TEST
- echo $test
- echo "${test}"
- echo ${USERNAME}
- echo "${docker_password}"
- echo ${docker_password}
- name: build and push flappy image
image: plugins/docker