From 6a3dc190f324892e8e5cc01569f405827f0e3a94 Mon Sep 17 00:00:00 2001 From: Jade Welton Date: Wed, 15 Jan 2025 12:20:04 -0800 Subject: [PATCH] Specify actual package names in upload artifacts task. --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1924e7e61..c6d938d23 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -106,7 +106,7 @@ jobs: PREVIEW_STORAGE_KEY: ${{ secrets.PREVIEW_STORAGE_KEY }} nuget: name: Publish Nuget - if: github.ref == 'refs/heads/master' || contains(github.ref, 'hotfix/') || contains(github.ref, 'release/') + #if: github.ref == 'refs/heads/master' || contains(github.ref, 'hotfix/') || contains(github.ref, 'release/') needs: [build] runs-on: ubuntu-latest env: @@ -125,11 +125,11 @@ jobs: - uses: actions/upload-artifact@v4 name: packages with: - path: "bin/Release/*.nupkg" + path: "bin/Release/Azure.Cosmos.DB.Data.Explorer.2.0.0-github-${GITHUB_SHA}.nupkg" nugetmpac: name: Publish Nuget MPAC - if: github.ref == 'refs/heads/master' || contains(github.ref, 'hotfix/') || contains(github.ref, 'release/') + #if: github.ref == 'refs/heads/master' || contains(github.ref, 'hotfix/') || contains(github.ref, 'release/') needs: [build] runs-on: ubuntu-latest env: @@ -149,7 +149,7 @@ jobs: - uses: actions/upload-artifact@v4 name: packages with: - path: "bin/Release/*.nupkg" + path: "bin/Release/Azure.Cosmos.DB.Data.Explorer.MPAC.2.0.0-github-${GITHUB_SHA}.nupkg" playwright-tests: name: "Run Playwright Tests (Shard ${{ matrix.shardIndex }} of ${{ matrix.shardTotal }})"