Skip to content

Commit

Permalink
channels must be an array
Browse files Browse the repository at this point in the history
  • Loading branch information
platan committed Feb 12, 2021
1 parent bba3574 commit 02e5f7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ runPluginVerifier {

publishPlugin {
token = project.hasProperty('publishToken') ? project['publishToken'] : null
channels = project.hasProperty('publishChannels') ? project['publishChannels'] : ['developer']
channels = project.hasProperty('publishChannels') ? [project['publishChannels']] : ['developer']
}

import com.vdurmont.semver4j.Semver
Expand Down

0 comments on commit 02e5f7f

Please sign in to comment.