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

25 lines
531 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: Build with node
image: node:14
commands:
- npm config set registry https://npm.hibas123.de
- 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: docker.hibas123.de/realtimedb
registry: docker.hibas123.de
debug: false
when:
branch: [master]