diff --git a/.github/workflows/artifacts.yml b/.github/workflows/artifacts.yml index 6a737252bc..e7db5a04ae 100644 --- a/.github/workflows/artifacts.yml +++ b/.github/workflows/artifacts.yml @@ -46,6 +46,10 @@ jobs: path: 'build/distributions/besu*.zip' name: besu-${{ github.ref_name }}.zip compression-level: 0 + - name: Artifactory Publish + env: + ARTIFACTORY_USER: ${{ secrets.BESU_ARTIFACTORY }} + run: ./gradlew -Prelease.releaseVersion=${{ github.ref_name }} -Pversion=${{github.ref_name}} artifactoryPublish testWindows: runs-on: windows-2022 needs: artifacts diff --git a/.github/workflows/pre-review.yml b/.github/workflows/pre-review.yml index a7b2faf6e8..6a0b6e79dd 100644 --- a/.github/workflows/pre-review.yml +++ b/.github/workflows/pre-review.yml @@ -124,7 +124,7 @@ jobs: - name: run unit tests id: unitTest run: ./gradlew $GRADLEW_UNIT_TEST_ARGS - - name: Upload Acceptance Test Results + - name: Upload Unit Test Results uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 with: name: unit-${{matrix.filename}}-test-results diff --git a/build.gradle b/build.gradle index 17d2d317ff..9c98874597 100644 --- a/build.gradle +++ b/build.gradle @@ -685,8 +685,6 @@ publishing { groupId = '.' version = project.version artifactId = 'besu' - artifact("$buildDir/distributions/besu-${project.version}.zip") - artifact("$buildDir/distributions/besu-${project.version}.tar.gz") { extension = 'tar.gz' } } } } @@ -698,11 +696,6 @@ def artifactoryOrg = System.getenv('ARTIFACTORY_ORG') ?: 'hyperledger' artifactory { contextUrl = "https://hyperledger.jfrog.io/${artifactoryOrg}" publish { - repository { - repoKey = "besu-binaries" - username = artifactoryUser - password = artifactoryKey - } defaults { publications('distArtifactory') publishArtifacts = true