Skip to content

Commit

Permalink
Disable Gradle scan in publish-plugins.main.yaml workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisCAD committed Nov 12, 2023
1 parent 4faa4cc commit 1134b71
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/publish-plugins.main.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ workflow(
setupJava()
gradle(
task = "publishPlugins",
scan = true,
properties = mapOf(
"gradle.publish.key" to expr { secrets["gradle_publish_key"]!! },
"gradle.publish.secret" to expr { secrets["gradle_publish_secret"]!! }
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-plugins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ jobs:
- id: 'step-2'
uses: 'gradle/gradle-build-action@v2'
with:
arguments: 'publishPlugins --scan -Pgradle.publish.key=${{ secrets.gradle_publish_key }} -Pgradle.publish.secret=${{ secrets.gradle_publish_secret }}'
arguments: 'publishPlugins -Pgradle.publish.key=${{ secrets.gradle_publish_key }} -Pgradle.publish.secret=${{ secrets.gradle_publish_secret }}'

0 comments on commit 1134b71

Please sign in to comment.