diff --git a/.github/workflows/build-verification.yml b/.github/workflows/build-verification.yml index 239cd36a..919219fd 100644 --- a/.github/workflows/build-verification.yml +++ b/.github/workflows/build-verification.yml @@ -19,7 +19,7 @@ jobs: distribution: 'adopt' - name: Set up Gradle uses: gradle/gradle-build-action@v3 + with: + develocity-access-key: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }} - name: Build with Gradle run: ./gradlew build -i - env: - GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_SOLUTIONS_ACCESS_TOKEN }} diff --git a/.github/workflows/cross-platform-testing-build-from-source.yml b/.github/workflows/cross-platform-testing-build-from-source.yml index 0bb80b47..2e9e7c28 100644 --- a/.github/workflows/cross-platform-testing-build-from-source.yml +++ b/.github/workflows/cross-platform-testing-build-from-source.yml @@ -16,10 +16,10 @@ jobs: distribution: 'adopt' - name: Set up Gradle uses: gradle/gradle-build-action@v3 + with: + develocity-access-key: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }} - name: Build with Gradle run: ./gradlew build - env: - GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_SOLUTIONS_ACCESS_TOKEN }} - name: Upload built script artifacts uses: actions/upload-artifact@v4 with: @@ -52,7 +52,7 @@ jobs: run: shell: ${{ matrix.shell }} {0} env: - GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_SOLUTIONS_ACCESS_TOKEN }} + GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }} WSLENV: GRADLE_ENTERPRISE_ACCESS_KEY steps: - name: Set up WSL diff --git a/.github/workflows/cross-platform-testing-use-development-release.yml b/.github/workflows/cross-platform-testing-use-development-release.yml index 49a465b8..cc1d13e6 100644 --- a/.github/workflows/cross-platform-testing-use-development-release.yml +++ b/.github/workflows/cross-platform-testing-use-development-release.yml @@ -31,8 +31,8 @@ jobs: run: shell: ${{ matrix.shell }} {0} env: - GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_SOLUTIONS_ACCESS_TOKEN }} - WSLENV: GRADLE_ENTERPRISE_ACCESS_KEY + GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }} + WSLENV: GRADLE_ENTERPRISE_ACCESS_KEY steps: - name: Set up WSL if: ${{ runner.os == 'Windows' }} diff --git a/.github/workflows/development-release.yml b/.github/workflows/development-release.yml index 55284d2b..77bd60bd 100644 --- a/.github/workflows/development-release.yml +++ b/.github/workflows/development-release.yml @@ -20,8 +20,9 @@ jobs: distribution: 'adopt' - name: Set up Gradle uses: gradle/gradle-build-action@v3 + with: + develocity-access-key: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }} - name: Build with Gradle run: ./gradlew build githubRelease -i env: GITHUB_ACCESS_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_SOLUTIONS_ACCESS_TOKEN }} diff --git a/.github/workflows/production-release.yml b/.github/workflows/production-release.yml index 4b977bc7..8f58655a 100644 --- a/.github/workflows/production-release.yml +++ b/.github/workflows/production-release.yml @@ -22,8 +22,9 @@ jobs: distribution: 'adopt' - name: Set up Gradle uses: gradle/gradle-build-action@v3 + with: + develocity-access-key: ${{ secrets.DV_SOLUTIONS_ACCESS_KEY }} - name: Build with Gradle run: ./gradlew build githubRelease -PfinalRelease -i env: GITHUB_ACCESS_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GE_SOLUTIONS_ACCESS_TOKEN }}