Torma Kristóf
3dacf08dae
All checks were successful
continuous-integration/drone/push Build is passing
23 lines
458 B
YAML
23 lines
458 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: kmlabz/homepage
|
|
tags:
|
|
- latest
|
|
- ${DRONE_BUILD_NUMBER}
|
|
registry: registry.kmlabz.com
|