File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -185,13 +185,22 @@ jobs:
185
185
command : .circleci/env_build.sh
186
186
- run :
187
187
name : Preview CHANGELOG for next release (only on master)
188
- command : if [ $CIRCLE_BRANCH == "master" ]; then npm run use-draftlogs && git --no-pager diff --color-words CHANGELOG.md || true; fi
188
+ command : |
189
+ if [ $CIRCLE_BRANCH == "master" ]
190
+ then npm run use-draftlogs && git --no-pager diff --color-words CHANGELOG.md || true
191
+ fi
189
192
- run :
190
193
name : Build dist/
191
194
command : npm run build
192
195
- store_artifacts :
193
196
path : dist
194
197
destination : dist
198
+ - run :
199
+ name : Preview plot-schema diff between previous and next releases (only on master)
200
+ command : |
201
+ if [ $CIRCLE_BRANCH == "master" ]
202
+ then git --no-pager diff tags/$(git describe --tags --abbrev=0) dist/plot-schema.json || true
203
+ fi
195
204
- run :
196
205
name : Pack tarball
197
206
command : |
Original file line number Diff line number Diff line change
1
+ - Preview plot-schema changes between previous and next release when building dist on master [[ #5814 ] ( https://github.com/plotly/plotly.js/pull/5814 )]
You can’t perform that action at this time.
0 commit comments