Skip to content

Commit

Permalink
Make step names consistent across workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
andykernahan committed Apr 3, 2020
1 parent 50a36b3 commit 7adfee2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/dotnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@ jobs:
if: matrix.os != 'windows-latest'
run: |
rsync --archive --ignore-existing ${DOTNET_ROOT/3.1.201/2.1.805}/ ${DOTNET_ROOT/3.1.201/2.1.202}/ $DOTNET_ROOT
- run: dotnet build --configuration Release
- name: test with dotnet
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test /p:CollectCoverage=true /p:ExcludeByFile=\"**/KubernetesClient/generated/**/*.cs\" /p:CoverletOutputFormat="cobertura"
# - uses: 5monkeys/cobertura-action@master
# with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/nuget.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
robocopy %DOTNET_ROOT:3.1.201=2.1.805% %DOTNET_ROOT% /E /XC /XN /XO
robocopy %DOTNET_ROOT:3.1.201=2.1.202% %DOTNET_ROOT% /E /XC /XN /XO
shell: cmd
- name: test with dotnet
- name: Test
run: dotnet test
- name: pack
- name: Pack
run: dotnet pack --configuration Release src/KubernetesClient -o pkg
- name: push
run: dotnet nuget push pkg\*.nupkg -s https://www.nuget.org/ -k ${{ secrets.nuget_api_key }}
- name: Push
run: dotnet nuget push pkg\*.nupkg -s https://www.nuget.org/ -k ${{ secrets.nuget_api_key }}

0 comments on commit 7adfee2

Please sign in to comment.