macroblog.rs @ bb2323f0be0d5877fe2afe98625ef412f9c83a26

feat: Add .gitlab-ci.yml file
 1diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
 2new file mode 100644
 3index 0000000000000000000000000000000000000000..29efba7958e4afc5919955dbece51e78a9152064
 4--- /dev/null
 5+++ b/.gitlab-ci.yml
 6@@ -0,0 +1,12 @@
 7+stages:          # List of stages for jobs, and their order of execution
 8+  - production
 9+  
10+production:
11+    stage: production
12+    image: ruby:latest
13+    script:
14+        - gem install faraday -v 1.8.0
15+        - dpl --provider=heroku --app=$HEROKU_APP --api-key=$HEROKU_API_KEY
16+    only:
17+        - master
18+