From 2a81551a60bf2a86a9bb8a32af22158ef65c96fa Mon Sep 17 00:00:00 2001 From: jawelton74 <103591340+jawelton74@users.noreply.github.com> Date: Tue, 21 Jan 2025 07:07:53 -0800 Subject: [PATCH] Use unique names in upload artifacts tasks (#2030) * Specify actual package names in upload artifacts task. * Revert path change, use unique names for upload task. * Fix the right properties. * Revert condition change --- .github/workflows/ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1924e7e61..3fc062bfe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -123,8 +123,9 @@ jobs: - run: dotnet nuget push "bin/Release/*.nupkg" --skip-duplicate --api-key Az --source="$NUGET_SOURCE" - run: dotnet nuget remove source "ADO" - uses: actions/upload-artifact@v4 - name: packages + name: Upload package to Artifacts with: + name: prod-package path: "bin/Release/*.nupkg" nugetmpac: @@ -147,8 +148,9 @@ jobs: - run: dotnet nuget push "bin/Release/*.nupkg" --skip-duplicate --api-key Az --source="$NUGET_SOURCE" - run: dotnet nuget remove source "ADO" - uses: actions/upload-artifact@v4 - name: packages + name: Upload package to Artifacts with: + name: mpac-package path: "bin/Release/*.nupkg" playwright-tests: