pizzawednes.day/.drone.yml

32 lines
453 B
YAML

kind: pipeline
type: docker
name: deploy
steps:
- name: build
image: ghcr.io/getzola/zola:v0.17.2
entrypoint: ["/bin/zola"]
command: ["build"]
- name: deploy
image: ubuntu:latest
entrypoint: ["/bin/bash"]
environment:
HOST:
from_secret: host
USER:
from_secret: user
SSH_KEY:
from_secret: ssh_key
PATH:
from_secret: path
when:
branch:
- main
commands:
- echo test
- apt-get update