Skip to content

Commit

Permalink
chore(ci): try splitting it up...
Browse files Browse the repository at this point in the history
  • Loading branch information
imhoffd committed Nov 9, 2018
1 parent ecd2024 commit fd08a26
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 23 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ version: 2
aliases:
- &restore-cache
keys:
- dependency-cache-{{ checksum "package.json" }}
- dependency-cache-{{ checksum "package.json" }}-1

- &save-cache
key: dependency-cache-{{ checksum "package.json" }}
key: dependency-cache-{{ checksum "package.json" }}-1
paths:
- node_modules

defaults: &defaults
docker:
- image: circleci/node:latest
- image: circleci/node:10
working_directory: /tmp/workspace

jobs:
Expand Down
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.0",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/exec": "^3.3.0",
"@semantic-release/git": "^7.0.4",
"@semantic-release/github": "^5.0.6",
Expand All @@ -42,28 +41,29 @@
},
"release": {
"branch": "stable",
"plugins": [
"@semantic-release/commit-analyzer",
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/exec",
{
"prepareCmd": "npm run version"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"package.json",
"plugin.xml"
]
}
],
"@semantic-release/git",
"@semantic-release/github"
]
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/exec",
"@semantic-release/git"
],
"publish": [
"@semantic-release/github",
"@semantic-release/npm"
],
"success": [
"@semantic-release/github"
],
"failure": [
"@semantic-release/github"
],
"prepareCmd": "npm run version"
},
"config": {
"commitizen": {
Expand Down

0 comments on commit fd08a26

Please sign in to comment.