From 615691ab11339a856322b560bc5b2576443a6c57 Mon Sep 17 00:00:00 2001 From: Artem Bilan Date: Thu, 7 Dec 2023 17:28:32 -0500 Subject: [PATCH] Clean up #2 --- .github/workflows/verify-staged-artifacts.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/verify-staged-artifacts.yml b/.github/workflows/verify-staged-artifacts.yml index 063243d3d1..4f20ec6e6d 100644 --- a/.github/workflows/verify-staged-artifacts.yml +++ b/.github/workflows/verify-staged-artifacts.yml @@ -12,7 +12,6 @@ env: GRADLE_ENTERPRISE_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USER }} GRADLE_ENTERPRISE_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }} GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_SECRET_ACCESS_KEY }} - JF_ENV_SPRING: ${{ secrets.JF_ARTIFACTORY_SPRING }} GITHUB_TOKEN: ${{ secrets.GH_ACTIONS_REPO_TOKEN }} jobs: @@ -30,19 +29,15 @@ jobs: - name: Set up Gradle uses: spring-io/spring-gradle-build-action@v2 - - uses: jfrog/setup-jfrog-cli@v3 - - name: Prepare Samples project against Staging run: | - jf gradlec --repo-resolve libs-staging-local - printf "allprojects { repositories { maven { url 'https://repo.spring.io/libs-staging-local' credentials { - username 'spring-builds' - password '$GITHUB_TOKEN' + username = 'spring-builds' + password = '$GITHUB_TOKEN' } } } @@ -51,4 +46,4 @@ jobs: sed -i "1,/springIntegrationVersion.*/s/springIntegrationVersion.*/springIntegrationVersion='${{ inputs.releaseVersion }}'/" build.gradle - name: Verify Spring Integration Samples against staged release - run: jf gradle check --init-script staging-repo-init.gradle + run: gradle check --init-script staging-repo-init.gradle