blog/.drone.yml

20 lines
347 B
YAML

kind: pipeline
type: docker
name: Blog build and release
steps:
- name: build
image: node:alpine
commands:
- npm install
- npx gatsby build
- name: docker
image: plugins/docker
settings:
username: stephan
password: eRFJ1R7UNo5zv1FFvLzv
repo: registry.while-false.de/blog
tags:
- 'latest'
- '1.3.0'