From 64afeec860a06f62674987178f1271f4467f7e83 Mon Sep 17 00:00:00 2001 From: Pete Peterson Date: Wed, 11 Oct 2017 13:11:59 -0700 Subject: [PATCH] docs: remove matrix mode example (#116) --- docs/user-guide/configuration/index.md | 17 +++++------------ 1 file changed, 5 insertions(+), 12 deletions(-) diff --git a/docs/user-guide/configuration/index.md b/docs/user-guide/configuration/index.md index 2569593c..b9b70e53 100644 --- a/docs/user-guide/configuration/index.md +++ b/docs/user-guide/configuration/index.md @@ -15,13 +15,12 @@ This is an interactive guide for exploring various important properties of the s You can access information about properties by hovering over the property name. -_Note: `Parallel`, `series`, and `matrix` have not been implemented yet. Everything will run in series by default._ -
 workflow:
     - publish
+    - deploy-west
 
 shared:
     environment:
@@ -31,12 +30,10 @@ _Note: `Parallel`, `series`, and `matrix` have not been implemented yet. Everyth
     addresses: [test@email.com, test2@email.com]
     statuses: [SUCCESS, FAILURE]
     annotations:
-    beta.screwdriver.cd/executor: docker
+    beta.screwdriver.cd/my-annotation: my-data
 jobs:
     main:
-        image: node:{{NODE_VERSION}}
-        matrix:
-    NODE_VERSION: [4,5,6]
+        image: node:6
         steps:
     - init: npm install
     - test: npm test
@@ -72,7 +69,7 @@ _Note: `Parallel`, `series`, and `matrix` have not been implemented yet. Everyth
         
-