diff --git a/.github/workflows/ci-integ-test-full.yml b/.github/workflows/ci-integ-test-full.yml index 9e205a3c..dc929902 100644 --- a/.github/workflows/ci-integ-test-full.yml +++ b/.github/workflows/ci-integ-test-full.yml @@ -3,6 +3,8 @@ name: CI-integ-test-full on: workflow_dispatch: push: + branches: + - 'main' paths: - 'dist/**' diff --git a/.github/workflows/ci-update-dist.yml b/.github/workflows/ci-update-dist.yml index 8ef9bbad..baf89d06 100644 --- a/.github/workflows/ci-update-dist.yml +++ b/.github/workflows/ci-update-dist.yml @@ -5,6 +5,7 @@ on: push: branches: - 'main' + - 'prerelease/**' - 'release/**' paths-ignore: - 'dist/**' diff --git a/sources/src/resources/init-scripts/gradle-actions.github-dependency-graph-gradle-plugin-apply.groovy b/sources/src/resources/init-scripts/gradle-actions.github-dependency-graph-gradle-plugin-apply.groovy index f9ea6423..37a3df47 100644 --- a/sources/src/resources/init-scripts/gradle-actions.github-dependency-graph-gradle-plugin-apply.groovy +++ b/sources/src/resources/init-scripts/gradle-actions.github-dependency-graph-gradle-plugin-apply.groovy @@ -15,8 +15,8 @@ buildscript { if (pluginRepositoryUsername && pluginRepositoryPassword) { logger.lifecycle("Applying credentials for plugin repository: ${pluginRepositoryUrl}") credentials { - username(pluginRepositoryUsername) - password(pluginRepositoryPassword) + username = pluginRepositoryUsername + password = pluginRepositoryPassword } authentication { basic(BasicAuthentication) diff --git a/sources/src/resources/init-scripts/gradle-actions.inject-develocity.init.gradle b/sources/src/resources/init-scripts/gradle-actions.inject-develocity.init.gradle index 1f52c4d8..1e560c67 100644 --- a/sources/src/resources/init-scripts/gradle-actions.inject-develocity.init.gradle +++ b/sources/src/resources/init-scripts/gradle-actions.inject-develocity.init.gradle @@ -45,12 +45,12 @@ initscript { repositories { maven { - url pluginRepositoryUrl + url = pluginRepositoryUrl if (pluginRepositoryUsername && pluginRepositoryPassword) { logger.lifecycle("Using credentials for plugin repository") credentials { - username(pluginRepositoryUsername) - password(pluginRepositoryPassword) + username = pluginRepositoryUsername + password = pluginRepositoryPassword } authentication { basic(BasicAuthentication)