From 361e342b9c6668643c28c09bcb14571af0aa6540 Mon Sep 17 00:00:00 2001 From: Danilo Del Busso Date: Mon, 19 Feb 2024 10:32:59 -0500 Subject: [PATCH] Use consistent artefact naming for SDK binaries Other binaries are of the form `SDK_Binaries_XYZ` Signed-off-by: Danilo Del Busso --- .github/workflows/generate-and-build-sdks.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/generate-and-build-sdks.yml b/.github/workflows/generate-and-build-sdks.yml index a0bee3a7fd0..92f0f52b854 100644 --- a/.github/workflows/generate-and-build-sdks.yml +++ b/.github/workflows/generate-and-build-sdks.yml @@ -137,7 +137,7 @@ jobs: - name: Store PowerShell SDK (.NET Framework 4.5) uses: actions/upload-artifact@v3 with: - name: XenServerPowerShell_NET45 + name: SDK_Binaries_XenServerPowerShell_NET45 path: output/**/* build-powershell-7x-sdk: @@ -207,5 +207,5 @@ jobs: - name: Store PowerShell SDK (.NET ${{ matrix.dotnet }}) uses: actions/upload-artifact@v3 with: - name: XenServerPowerShell_NET${{ matrix.dotnet }} + name: SDK_Binaries_XenServerPowerShell_NET${{ matrix.dotnet }} path: output/**/* diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cf7ebebd2a1..9045949aea2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,13 +61,13 @@ jobs: - name: Retrieve PowerShell 5.x SDK distribution artifacts uses: actions/download-artifact@v3 with: - name: XenServerPowerShell_NET45 + name: SDK_Binaries_XenServerPowerShell_NET45 path: sdk_powershell_5x/ - name: Retrieve PowerShell 7.x SDK distribution artifacts uses: actions/download-artifact@v3 with: - name: XenServerPowerShell_NET8 + name: SDK_Binaries_XenServerPowerShell_NET6 path: sdk_powershell_7x/ - name: Zip PowerShell 5.x SDK artifacts for deployment