From ac449c67b1c540f21d148682eaed472a512fbc29 Mon Sep 17 00:00:00 2001 From: Teodor Voinea Date: Fri, 19 Nov 2021 06:13:02 -0800 Subject: [PATCH 1/2] Remove ADO publish from CI --- .github/workflows/build-release.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index af6b61f25..7f05115df 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -61,11 +61,6 @@ jobs: run: dotnet nuget add source https://nuget.pkg.github.com/microsoft/index.json --password $GITHUB_TOKEN --username notused --store-password-in-clear-text --name cgwriter env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Add NuGet publication source for Azure Artifacts Packaging feed - run: dotnet nuget add source https://1essharedassets.pkgs.visualstudio.com/1esPkgs/_packaging/ComponentDetection/nuget/v3/index.json --password $AZART_TOKEN --username az --store-password-in-clear-text --name Packaging - env: - AZART_TOKEN: ${{ secrets.AZART_TOKEN }} - name: Generate NuGet packages run: dotnet pack -o dist-nuget -c Release @@ -76,6 +71,5 @@ jobs: for f in ./dist-nuget/*.nupkg do curl -vX PUT -u "[user]:${{ secrets.GITHUB_TOKEN }}" -F package=@$f https://nuget.pkg.github.com/microsoft/ - dotnet nuget push --source "Packaging" --api-key az $f done shell: bash From f345ad093b3c17545a48a1f24f4451bd140f14e2 Mon Sep 17 00:00:00 2001 From: Teodor Voinea Date: Fri, 19 Nov 2021 06:50:05 -0800 Subject: [PATCH 2/2] Point to the right repo --- .github/workflows/verify-snapshot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/verify-snapshot.yml b/.github/workflows/verify-snapshot.yml index 227883e37..f0143a613 100644 --- a/.github/workflows/verify-snapshot.yml +++ b/.github/workflows/verify-snapshot.yml @@ -41,7 +41,7 @@ jobs: const res = await github.paginate( github.actions.listArtifactsForRepo.endpoint.merge({ owner: 'microsoft', - repo: 'componentdetection-bcde', + repo: 'component-detection', }) );