This repository has been archived on 2021-06-02. You can view files and clone it, but cannot push or open issues or pull requests.
RealtimeDB-OLD/.drone.yml
Fabian Stamm f1d475580c
All checks were successful
continuous-integration/drone/push Build is passing
Making drone only publish on branch master
2020-06-16 10:00:41 +02:00

24 lines
476 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: Build with node
image: node:12
commands:
- npm install
- npm run build
- name: Publish to docker
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
auto_tag: true
repo: hibas123.azurecr.io/realtimedb
registry: hibas123.azurecr.io
debug: true
when:
branch: [master]