aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2021-12-09 14:58:38 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2021-12-09 14:58:38 +0100
commitcb6bd1a331ea35454d9cbb378f559f6bb9e8394f (patch)
tree1c66fae70cbb25b8917cf7b1785dc11c70c7e823
parentf1757ac961cfe829a3a2060c4647e1d0866d9093 (diff)
downloadrfid-cb6bd1a331ea35454d9cbb378f559f6bb9e8394f.tar.gz
rfid-cb6bd1a331ea35454d9cbb378f559f6bb9e8394f.zip
Add CI integration
-rw-r--r--.drone.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 0000000..8e62d3b
--- /dev/null
+++ b/.drone.yml
@@ -0,0 +1,22 @@
+---
+# see https://docs.drone.io/pipeline/configuration/
+kind: pipeline
+type: docker
+name: build
+
+steps:
+ - name: build and publish
+ image: klakegg/hugo:0.90.0-alpine
+ environment:
+ AWS_ACCESS_KEY_ID:
+ from_secret: aws_access_key_id
+ AWS_SECRET_ACCESS_KEY:
+ from_secret: aws_secret_access_key
+ commands:
+ - hugo
+ - hugo deploy
+---
+kind: signature
+hmac: 440ef22e1e1e95fc8b1bbc12b16815e90da565797ab2de1db1b5e122a3cf04e4
+
+...