hastebin-build/.drone.yml

80 lines
1.3 KiB
YAML
Raw Permalink Normal View History

2022-08-27 18:16:26 +00:00
kind: pipeline
type: docker
2024-01-03 21:25:52 +00:00
name: hastebin-latest-custom
2022-08-27 18:16:26 +00:00
steps:
- name: publish
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
dockerfile: latest/Dockerfile
context: latest/
build-args:
- HASTEBIN_VERSION=master
purge: true
repo: arminfriedl/hastebin
tags: latest
trigger:
event:
- custom
---
kind: pipeline
type: docker
2024-01-03 21:25:52 +00:00
name: hastebin-latest
steps:
- name: publish
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
dockerfile: latest/Dockerfile
context: latest/
build-args:
- HASTEBIN_VERSION=master
purge: true
repo: arminfriedl/hastebin
tags: latest
trigger:
event:
- cron
cron:
- hastebin_latest
2020-06-07 19:51:15 +00:00
---
kind: pipeline
type: docker
2024-01-03 21:25:52 +00:00
name: hastebin-stable
2020-06-07 19:51:15 +00:00
steps:
- name: publish
image: plugins/docker
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
dockerfile: stable/Dockerfile
context: stable/
build-args:
- HASTEBIN_VERSION=master
purge: true
repo: arminfriedl/hastebin
tags: stable
trigger:
event:
- cron
cron:
- hastebin_stable