Torma Kristóf
7980a215ff
All checks were successful
continuous-integration/drone/push Build is passing
21 lines
423 B
YAML
21 lines
423 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: html_website
|
|
|
|
steps:
|
|
- name: html_validate
|
|
image: ubuntu
|
|
commands:
|
|
- apt-get update && apt-get install -y tidy
|
|
- tidy -imu index.html || true
|
|
- name: kaniko
|
|
image: banzaicloud/drone-kaniko
|
|
settings:
|
|
username:
|
|
from_secret: DOCKER_USERNAME
|
|
password:
|
|
from_secret: DOCKER_PASSWORD
|
|
repo: tormakris/homepage
|
|
tags: latest
|
|
registry: registry.kmlabz.com
|