Upgrade the version of download-artifact action #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
- push | |
- workflow_dispatch | |
jobs: | |
Build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install CodeCov | |
run: dotnet tool install -g codecov.tool | |
- name: Build | |
run: dotnet build | |
- name: Pack | |
run: dotnet pack --property:PackageOutputPath=../../pkgs | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: pkgs | |
path: | | |
./pkgs/*.nupkg | |
./pkgs/*.snupkg | |
- name: Publish Coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
files: '**/*/Coverage.*.xml' |