cuddle-image/.drone.yml

63 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2022-08-12 01:04:25 +02:00
kind: pipeline
name: default
type: docker
steps:
2022-08-12 01:37:47 +02:00
- name: load_secret
image: debian:buster-slim
2022-08-12 01:41:49 +02:00
volumes:
- name: ssh
2022-08-12 01:42:19 +02:00
path: /root/.ssh/
2022-08-12 01:37:47 +02:00
environment:
SSH_KEY:
from_secret: gitea_id_ed25519
commands:
- mkdir -p $HOME/.ssh/
- echo "$SSH_KEY" > $HOME/.ssh/id_ed25519
2022-08-12 01:38:28 +02:00
- ls $HOME/.ssh/
2022-08-12 01:39:00 +02:00
- cat $HOME/.ssh/id_ed25519
2022-08-12 01:37:47 +02:00
2022-08-12 01:18:40 +02:00
- name: build
2022-08-14 21:03:35 +02:00
image: kasperhermansen/cuddle-image:latest
2022-08-14 20:56:23 +02:00
pull: always
2022-08-12 01:41:49 +02:00
volumes:
- name: ssh
2022-08-12 01:42:19 +02:00
path: /root/.ssh/
2022-08-12 02:09:23 +02:00
- name: dockersock
path: /var/run
2022-08-13 12:21:31 +02:00
commands:
2022-08-13 18:14:13 +02:00
- apk add bash
2022-08-13 18:10:36 +02:00
- cuddle_cli x build_cuddle_image
2022-08-12 01:04:25 +02:00
environment:
DOCKER_BUILDKIT: 1
2022-08-12 01:18:40 +02:00
DOCKER_USERNAME:
from_secret: docker_username
DOCKER_PASSWORD:
from_secret: docker_password
2022-08-12 01:37:47 +02:00
depends_on:
- "load_secret"
2022-08-12 01:04:25 +02:00
- name: send telegram notification
image: appleboy/drone-telegram
settings:
token:
from_secret: telegram_token
to: 2129601481
format: markdown
when:
status: [failure]
2022-08-12 01:41:49 +02:00
2022-08-12 02:09:23 +02:00
services:
- name: docker
image: docker:dind
privileged: true
volumes:
- name: dockersock
path: /var/run
2022-08-12 01:41:49 +02:00
volumes:
- name: ssh
temp: {}
2022-08-12 02:09:23 +02:00
- name: dockersock
temp: {}