From df8374693bb7a1d39960e4153c161d49fa02182a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Nicoll?= Date: Wed, 8 May 2024 15:31:43 +0200 Subject: [PATCH] Adapt docs deployment properties This commit fixes the artifact properties we set for "framework-docs" artifacts. These have a different name as of 6.1.x and were backported as is. Closes gh-32781 --- .github/workflows/build-and-deploy-snapshot.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-deploy-snapshot.yml b/.github/workflows/build-and-deploy-snapshot.yml index 0bd5485e5db6..30d08792b458 100644 --- a/.github/workflows/build-and-deploy-snapshot.yml +++ b/.github/workflows/build-and-deploy-snapshot.yml @@ -49,9 +49,10 @@ jobs: signing-key: ${{ secrets.GPG_PRIVATE_KEY }} signing-passphrase: ${{ secrets.GPG_PASSPHRASE }} artifact-properties: | - /**/framework-api-*.zip::zip.name=spring-framework,zip.deployed=false - /**/framework-api-*-docs.zip::zip.type=docs - /**/framework-api-*-schema.zip::zip.type=schema + /**/spring-*.zip::zip.name=spring-framework,zip.deployed=false + /**/spring-*-docs.zip::zip.type=docs + /**/spring-*-dist.zip::zip.type=dist + /**/spring-*-schema.zip::zip.type=schema - name: Send notification uses: ./.github/actions/send-notification if: always()