ad5001.eu/ci/drone.yml
Ad5001 bd62c64b7a
Some checks failed
continuous-integration/drone/push Build is failing
I'm tired of dealing with docker issues, so I'm changing this.
2021-08-08 23:49:40 +02:00

58 lines
1.2 KiB
YAML

kind: pipeline
name: default
clone:
git:
image: plugins/git
recursive: true
steps:
- name: Build dev.ad5001.eu
image: xdevbase/hugo-builder:latest
commands:
- hugo
when:
event: [ push, tag ]
branch: [ main ]
- name: Deploy dev.ad5001.eu
image: appleboy/drone-scp
settings:
host:
from_secret: SSH_HOST
username:
from_secret: SSH_USERNAME
password:
from_secret: SSH_PASSWORD
target:
from_secret: DEV_WWW_PATH
source: public/*
when:
event: [ push, tag ]
branch: [ main ]
- name: Build ad5001.eu
image: plugins/hugo
settings:
hugo_version: 0.80
validate: true
when:
event: [ push, tag ]
branch: [ prod ]
- name: Deploy ad5001.eu
image: appleboy/drone-scp
settings:
host:
from_secret: SSH_HOST
username:
from_secret: SSH_USERNAME
password:
from_secret: SSH_PASSWORD
target:
from_secret: PROD_WWW_PATH
source: public/*
when:
event: [ push, tag ]
branch: [ prod ]