Skip to content

Commit

Permalink
Fix test project name in AWS instrumentation (open-telemetry#77)
Browse files Browse the repository at this point in the history
Sorry I missed this one before merging in the whole PR. Doing the same fix as done for the rest of the workflows in open-telemetry/opentelemetry-dotnet-contrib#73
  • Loading branch information
srprash authored Feb 23, 2021
1 parent 0a4307d commit 5b5719f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/package-Instrumentation.AWS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
nuget push **/${{env.PROJECT}}/bin/**/*.nupkg -Source https://www.myget.org/F/opentelemetry-contrib/api/v2/package

0 comments on commit 5b5719f

Please sign in to comment.