File tree 1 file changed +27
-0
lines changed
1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change 88
88
command : ./.circleci/test.sh image
89
89
- store_artifacts :
90
90
path : build
91
+ destination : /
91
92
92
93
test-image2 :
93
94
docker :
@@ -107,6 +108,7 @@ jobs:
107
108
command : ./.circleci/test.sh image2
108
109
- store_artifacts :
109
110
path : build
111
+ destination : /
110
112
111
113
test-syntax :
112
114
docker :
@@ -120,6 +122,24 @@ jobs:
120
122
name : Run syntax tests
121
123
command : ./.circleci/test.sh syntax
122
124
125
+ publish :
126
+ docker :
127
+ - image : circleci/node:10.9.0
128
+ working_directory : ~/plotly.js
129
+ steps :
130
+ - checkout
131
+ - attach_workspace :
132
+ at : ~/plotly.js
133
+ - store_artifacts :
134
+ path : build/plotly.js
135
+ destination : /plotly.js
136
+ - store_artifacts :
137
+ path : dist/plotly.min.js
138
+ destination : /plotly.min.js
139
+ - store_artifacts :
140
+ path : dist/plot-schema.json
141
+ destination : /plot-schema.json
142
+
123
143
workflows :
124
144
version : 2
125
145
build-and-test :
@@ -140,3 +160,10 @@ workflows:
140
160
- test-syntax :
141
161
requires :
142
162
- build
163
+ - publish :
164
+ requires :
165
+ - test-jasmine
166
+ - test-jasmine2
167
+ - test-image
168
+ - test-image2
169
+ - test-syntax
You can’t perform that action at this time.
0 commit comments