Skip to content

Commit 90d9e1a

Browse files
committed
Rename property to address naming clash
1 parent 3c2f6e7 commit 90d9e1a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/actions/publish-to-plugin-portal/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ runs:
3535
- name: Publish
3636
shell: bash
3737
working-directory: ${{ github.action_path }}
38-
run: ${{ github.workspace }}/gradlew publishExisting -Pgradle.publish.key=${{ inputs.gradle-plugin-publish-key }} -Pgradle.publish.secret=${{ inputs.gradle-plugin-publish-secret }} -PpluginVersion=${{ inputs.plugin-version }} -PrepositoryRoot=${{ github.workspace }}/gradle-plugin-portal
38+
run: ${{ github.workspace }}/gradlew publishExisting -Pgradle.publish.key=${{ inputs.gradle-plugin-publish-key }} -Pgradle.publish.secret=${{ inputs.gradle-plugin-publish-secret }} -PdependencyManagementPluginVersion=${{ inputs.plugin-version }} -PrepositoryRoot=${{ github.workspace }}/gradle-plugin-portal

.github/actions/publish-to-plugin-portal/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ plugins {
55
tasks.register("publishExisting", com.gradle.publish.PublishExistingTask) {
66
pluginId = "io.spring.dependency-management"
77
fileRepositoryRoot = new File("${repositoryRoot}")
8-
pluginVersion = "${pluginVersion}"
9-
pluginCoordinates = "io.spring.gradle:dependency-management-plugin:${pluginVersion}"
8+
pluginVersion = "${dependencyManagementPluginVersion}"
9+
pluginCoordinates = "io.spring.gradle:dependency-management-plugin:${dependencyManagementPluginVersion}"
1010
displayName = "Dependency Management Plugin"
1111
pluginDescription = "A Gradle plugin that provides Maven-like dependency management functionality"
1212
website = "https://github.com/spring-gradle-plugins/dependency-management-plugin"

0 commit comments

Comments
 (0)