forked from TwoTenPvP/UnityPackager
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.releaserc.json
23 lines (23 loc) · 931 Bytes
/
.releaserc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
["semantic-release-plugin-csproj", {
"projectFile": "unity-packer/unity-packer.csproj"
}],
["@semantic-release/github", {
"assets": [
{"path": "unity-packer/nupkg/unity-packer.*.nupkg", "name": "unity-packer.${nextRelease.version}.nupkg", "label": "unity-packer.${nextRelease.version}.nupkg"}
]
}],
"@semantic-release/changelog",
["@semantic-release/git", {
"assets": ["CHANGELOG.md", "**/*.csproj"]
}],
["@semantic-release/exec", {
"shell" : true,
"prepareCmd": "dotnet pack",
"publishCmd": "dotnet nuget push unity-packer/nupkg/unity-packer.${nextRelease.version}.nupkg -k %NUGET_APIKEY% -s https://api.nuget.org/v3/index.json"
}]
]
}