36 lines
569 B
YAML
36 lines
569 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
name: test
|
||
|
|
||
|
steps:
|
||
|
- name: test
|
||
|
image: osshelp/drone-molecule
|
||
|
environment:
|
||
|
LXD_REMOTE_PASSWORD:
|
||
|
from_secret: lxd_remote_password
|
||
|
settings:
|
||
|
action: test
|
||
|
|
||
|
---
|
||
|
kind: pipeline
|
||
|
name: publish
|
||
|
|
||
|
depends_on: [test]
|
||
|
trigger:
|
||
|
status: [success]
|
||
|
event: [push, tag]
|
||
|
ref:
|
||
|
- refs/heads/*
|
||
|
- refs/tags/*
|
||
|
|
||
|
steps:
|
||
|
- name: publish
|
||
|
image: osshelp/drone-molecule
|
||
|
environment:
|
||
|
MINIO_USER:
|
||
|
from_secret: minio_user
|
||
|
MINIO_SECRET:
|
||
|
from_secret: minio_secret
|
||
|
settings:
|
||
|
action: upload
|