My Personal Blog
https://blog.xirion.net
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
421 B
20 lines
421 B
---
|
|
kind: pipeline
|
|
type: kubernetes
|
|
name: default
|
|
steps:
|
|
- name: submodules
|
|
image: alpine/git
|
|
commands:
|
|
- git submodule update --init --recursive
|
|
- name: kaniko
|
|
image: ghcr.io/finitum/drone-kaniko:edge
|
|
settings:
|
|
cache: true
|
|
username:
|
|
from_secret: REGISTRY_USER
|
|
password:
|
|
from_secret: REGISTRY_PASSWORD
|
|
registry: registry.xirion.net
|
|
repo: library/blog.xirion.net
|
|
tags: latest
|
|
|