Skip to content

Commit

Permalink
standardize step names
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenCleary committed Jun 7, 2020
1 parent 287583f commit 4c8ece1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,17 @@ jobs:
dotnet test --configuration Release --no-build --collect:"XPlat Code Coverage"
dotnet pack --configuration Release --no-build
- name: Upload artifacts
- name: Upload package artifacts
uses: actions/upload-artifact@v2
with:
name: nuget-packages
path: |
**/*.nupkg
**/*.snupkg
- name: Upload code coverage
- name: Publish code coverage
uses: codecov/codecov-action@v1

- name: Publish
- name: Publish packages
run: |
dotnet nuget push **/*.nupkg --source https://api.nuget.org/v3/index.json --skip-duplicate --api-key ${{ secrets.NUGET_API_KEY }}

0 comments on commit 4c8ece1

Please sign in to comment.