From 5b5719f1cfbac23d812c1a47cfb1cfb6956acf1f Mon Sep 17 00:00:00 2001 From: Prashant Srivastava <50466688+srprash@users.noreply.github.com> Date: Tue, 23 Feb 2021 11:36:26 -0800 Subject: [PATCH] Fix test project name in AWS instrumentation (#77) Sorry I missed this one before merging in the whole PR. Doing the same fix as done for the rest of the workflows in https://github.com/open-telemetry/opentelemetry-dotnet-contrib/pull/73 --- .github/workflows/package-Instrumentation.AWS.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/package-Instrumentation.AWS.yml b/.github/workflows/package-Instrumentation.AWS.yml index e6fc955ec2d..ca9a3e542d4 100644 --- a/.github/workflows/package-Instrumentation.AWS.yml +++ b/.github/workflows/package-Instrumentation.AWS.yml @@ -33,7 +33,7 @@ jobs: run: dotnet build src/${{env.PROJECT}} --configuration Release --no-restore -p:Deterministic=true - name: dotnet test ${{env.PROJECT}} - run: dotnet test test/${{env.PROJECT}} + run: dotnet test test/${{env.PROJECT}}.Tests - name: dotnet pack ${{env.PROJECT}} run: dotnet pack src/${{env.PROJECT}} --configuration Release --no-build @@ -47,4 +47,4 @@ jobs: - name: Publish MyGet run: | nuget setApiKey ${{ secrets.MYGET_TOKEN }} -Source https://www.myget.org/F/opentelemetry-contrib/api/v2/package - nuget push **/${{env.PROJECT}}/bin/**/*.nupkg -Source https://www.myget.org/F/opentelemetry-contrib/api/v2/package \ No newline at end of file + nuget push **/${{env.PROJECT}}/bin/**/*.nupkg -Source https://www.myget.org/F/opentelemetry-contrib/api/v2/package