summaryrefslogtreecommitdiff
path: root/.drone.yml
diff options
context:
space:
mode:
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml16
1 files changed, 11 insertions, 5 deletions
diff --git a/.drone.yml b/.drone.yml
index ea5228a..a03b13c 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -1,10 +1,16 @@
kind: pipeline
type: docker
-name: default
+name: deploy_hugo
steps:
-- name: greeting
- image: alpine
+- name: build
+ image: klakegg/hugo
+ environment:
+ HUGO_ENVIRONMENT: production
+ HUGO_ENV: production
+
+- name: deploy
+ image: golang
commands:
- - echo hello
- - echo world
+ - ls
+