Files
OCPP.Core/OCPP.Core.Server/.drone.yml
nutchayut 318d7884f2
All checks were successful
continuous-integration/drone/push Build is passing
b
2024-06-02 00:06:06 +07:00

36 lines
871 B
YAML

kind: pipeline
type: docker
name: default
globals:
- &docker_creds
username:
from_secret: gitea_username
password:
from_secret: gitea_password
steps:
- name: API Server # building the API docker image
image: plugins/docker
pull: if-not-exists
settings:
dockerfile: OCPP.Core.Server/Dockerfile
repo: registry.71dev.com/nutchayut/ocpp.core.server
tags: latest
registry: "registry.71dev.com"
#dry_run: true
debug: false
<<: *docker_creds
steps:
- name: API Management # building the API docker image
image: plugins/docker
pull: if-not-exists
settings:
dockerfile: OCPP.Core.Management/Dockerfile
repo: registry.71dev.com/nutchayut/ocpp.core.server
tags: latest
registry: "registry.71dev.com"
#dry_run: true
debug: false
<<: *docker_creds