This is an automated email from the ASF dual-hosted git repository. benw pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
The following commit(s) were added to refs/heads/master by this push: new 589f4c5d8 Publish build scans to develocity.apache.org (#52) 589f4c5d8 is described below commit 589f4c5d8935a7a59f7da35174a490709dbfc6f7 Author: Clay Johnson <cjohn...@gradle.com> AuthorDate: Tue Jan 21 04:32:50 2025 -0600 Publish build scans to develocity.apache.org (#52) * Publish build scans to develocity.apache.org * Use `DEVELOCITY_ACCESS_KEY` to authenticate to `develocity.apache.org` * Update Develocity plugin versions --- .github/workflows/build-pull-request.yaml | 2 +- settings.gradle | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-pull-request.yaml b/.github/workflows/build-pull-request.yaml index 3fd92caeb..14152f55d 100644 --- a/.github/workflows/build-pull-request.yaml +++ b/.github/workflows/build-pull-request.yaml @@ -3,7 +3,7 @@ on: pull_request env: MOZ_HEADLESS: true - DEVELOCITY_ACCESS_KEY: ${{ secrets.GE_ACCESS_TOKEN }} + DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }} jobs: build: diff --git a/settings.gradle b/settings.gradle index d854ccacf..f7400a150 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,5 +1,5 @@ plugins { - id 'com.gradle.develocity' version '3.17.6' + id 'com.gradle.develocity' version '3.18.2' id 'com.gradle.common-custom-user-data-gradle-plugin' version '2.0.2' } @@ -8,7 +8,7 @@ def isJenkins = System.getenv('JENKINS_URL') != null def isCI = isTravisCI || isJenkins develocity { - server = "https://ge.apache.org" + server = "https://develocity.apache.org" projectId = "tapestry" buildScan { uploadInBackground = !isCI