From 6e572f5b690b9768c7d3ba1a91552b745d8ed42a Mon Sep 17 00:00:00 2001 From: Paul Horton Date: Fri, 2 Aug 2024 08:07:08 +0100 Subject: [PATCH] chore(ci): use Sonatype Platform URL from variable not secret Signed-off-by: Paul Horton --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 58b3e10..5682c5a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -85,7 +85,7 @@ jobs: id: evaluate uses: sonatype/actions/evaluate@v1 with: - iq-server-url: ${{ secrets.SONATYPE_LIFECYCLE_URL }} + iq-server-url: ${{ vars.SONATYPE_PLATFORM_URL }} username: ${{ secrets.SONATYPE_LIFECYCLE_USERNAME }} password: ${{ secrets.SONATYPE_LIFECYCLE_PASSWORD }} application-id: ${{ env.LC_APPLICATION_ID }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fe91ae6..b94f886 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -55,7 +55,7 @@ jobs: id: evaluate uses: sonatype/actions/evaluate@v1 with: - iq-server-url: ${{ secrets.SONATYPE_LIFECYCLE_URL }} + iq-server-url: ${{ vars.SONATYPE_PLATFORM_URL }} username: ${{ secrets.SONATYPE_LIFECYCLE_USERNAME }} password: ${{ secrets.SONATYPE_LIFECYCLE_PASSWORD }} application-id: ${{ env.LC_APPLICATION_ID }}