File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -18,18 +18,18 @@ tasks.named("check") {
18
18
def isSnapshot = version. endsWith(" -SNAPSHOT" )
19
19
def githubTokenProvider = providers. environmentVariable(" GITHUB_TOKEN" ). orElse(" " )
20
20
def githubShaProvider = providers. environmentVariable(" GITHUB_SHA" ). orElse(" " )
21
- def repository = " mockito/mockito"
21
+ def repositoryName = " mockito/mockito-kotlin "
22
22
23
23
tasks. named(" generateChangelog" ) {
24
24
previousRevision = project. ext. ' shipkit-auto-version.previous-tag'
25
25
githubToken = githubTokenProvider. get()
26
- repository = repository
26
+ repository = repositoryName
27
27
}
28
28
29
29
tasks. named(" githubRelease" ) {
30
30
def genTask = tasks. named(" generateChangelog" ). get()
31
31
dependsOn genTask
32
- repository = repository
32
+ repository = repositoryName
33
33
changelog = genTask. outputFile
34
34
githubToken = githubTokenProvider. get()
35
35
newTagRevision = githubShaProvider. get()
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments