We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b0cd30 commit e358062Copy full SHA for e358062
.github/workflows/release.yml
@@ -35,8 +35,10 @@ jobs:
35
- name: Test
36
run: dotnet test
37
38
- - name: Publish the application binaries
39
- run: dotnet publish -c Release -o ./artifacts -p:Version=${{ steps.version.outputs.full_without_prefix }}
+ - name: Publish the application binaries (.net6)
+ run: dotnet publish -c Release -o ./artifacts/net6 -f net6.0 -p:Version=${{ steps.version.outputs.full_without_prefix }}
40
+ - name: Publish the application binaries (.net7)
41
+ run: dotnet publish -c Release -o ./artifacts/net7 -f net7.0 -p:Version=${{ steps.version.outputs.full_without_prefix }}
42
- name: Create nuget package
43
run: dotnet pack -c Release -o ./artifacts -p:Version=${{ steps.version.outputs.full_without_prefix }}
44
0 commit comments