File tree Expand file tree Collapse file tree 2 files changed +15
-2
lines changed
Expand file tree Collapse file tree 2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 7474 dotnet tool update -g dotnet-retest
7575 dotnet retest -- --no-build
7676
77+ - name : 🙏 publish
78+ shell : pwsh
79+ run : |
80+ $rids = dotnet msbuild src/runfile/runfile.csproj -getproperty:RuntimeIdentifiers
81+ $rids | %{ $_.Split(';') } | %{ $_.Trim() } | ? { $_ } | %{ dotnet publish -r $_ }
82+
7783 - name : 📦 pack
7884 run : dotnet pack --no-build -m:1 -bl:pack.binlog
7985
Original file line number Diff line number Diff line change 1010env :
1111 DOTNET_NOLOGO : true
1212 Configuration : Release
13- PackOnBuild : true
14- GeneratePackageOnBuild : true
1513 VersionLabel : ${{ github.ref }}
1614 GH_TOKEN : ${{ secrets.GH_TOKEN }}
1715 MSBUILDTERMINALLOGGER : auto
3836 dotnet tool update -g dotnet-retest
3937 dotnet retest -- --no-build
4038
39+ - name : 🙏 publish
40+ shell : pwsh
41+ run : |
42+ $rids = dotnet msbuild src/runfile/runfile.csproj -getproperty:RuntimeIdentifiers
43+ $rids | %{ $_.Split(';') } | %{ $_.Trim() } | ? { $_ } | %{ dotnet publish -r $_ }
44+
45+ - name : 📦 pack
46+ run : dotnet pack --no-build -m:1 -bl:pack.binlog
47+
4148 - name : 🐛 logs
4249 uses : actions/upload-artifact@v4
4350 if : runner.debug && always()
You can’t perform that action at this time.
0 commit comments