summaryrefslogtreecommitdiff
path: root/.drone.yml
diff options
context:
space:
mode:
authorhyang <hyang@hyang.xyz>2023-08-17 16:44:06 -0700
committerhyang <hyang@hyang.xyz>2023-08-17 16:44:06 -0700
commit19d662f289fbe2eea57728e31b3cdb96733f7a3e (patch)
tree841bcfdaeae8328d29e78788ddc9df1c7e017f13 /.drone.yml
parent720f38fa8e0bb0dbbdfea10e4c460bdd43a32788 (diff)
experimenting with drones
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
+