Skip to content

Commit

Permalink
fix: version file (#1337)
Browse files Browse the repository at this point in the history
* fix: set version in release

* fix syntax error

* Rebuild

* Rebuild again
  • Loading branch information
paulpach committed Dec 21, 2019
1 parent e4f89cf commit ed7e509
Showing 1 changed file with 17 additions and 19 deletions.
36 changes: 17 additions & 19 deletions .releaserc.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,23 @@
{
"verifyConditions": ["@semantic-release/github"],
"publish": ["@semantic-release/github"],
"prepare": [
{
"path": "@semantic-release/exec",
"cmd": "echo ${nextRelease.version} > Assets/Mirror/version.txt"
}
],
"prepare": ["@semantic-release/exec"],
"plugins": [
["@semantic-release/commit-analyzer", {
"preset": "angular",
"releaseRules": [
{"type": "breaking", "release": "major"},
{"type": "feature", "release": "minor"},
]
}],
'@semantic-release/release-notes-generator',
["@semantic-release/github", {
"assets": [
{"path": "Mirror.unitypackage", "label": "Mirror.unitypackage"}
]
}],
["@semantic-release/commit-analyzer", {
"preset": "angular",
"releaseRules": [
{"type": "breaking", "release": "major"},
{"type": "feature", "release": "minor"},
]
}],
'@semantic-release/release-notes-generator',
["@semantic-release/github", {
"assets": [
{"path": "Mirror.unitypackage", "label": "Mirror.unitypackage"}
]
}],
["@semantic-release/exec", {
"prepareCmd": "echo ${nextRelease.version} > Assets/Mirror/version.txt",
}],
]
}

0 comments on commit ed7e509

Please sign in to comment.