We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f585d50 commit cf26d76Copy full SHA for cf26d76
1 file changed
.github/workflows/dotnet.yml
@@ -30,10 +30,12 @@ jobs:
30
uses: codecov/codecov-action@v7
31
env:
32
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
33
- - name: Pack NuGet Package
+ - name: Pack main NuGet Package
34
run: dotnet pack HarpoS7/HarpoS7.csproj -c Release --output ./nupkg_output
35
+ - name: Pack PublicKeys NuGet Package
36
+ run: dotnet pack HarpoS7.PublicKeys/HarpoS7.PublicKeys.csproj -c Release --output ./nupkg_output
37
- name: Upload NuGet Package as Artifact
38
uses: actions/upload-artifact@v7
39
with:
- name: HarpoS7-NuGet-Package
40
+ name: HarpoS7-NuGet-Packages
41
path: ./nupkg_output/*.nupkg
0 commit comments