We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9a51b9 commit f2cd4e6Copy full SHA for f2cd4e6
1 file changed
.github/workflows/dotnetcore.yml
@@ -45,6 +45,9 @@ jobs:
45
- name: Complete SonarScanner
46
run: SonarScanner.MSBuild.exe end /d:sonar.login=${{ secrets.SONAR_TOKEN }}
47
48
+ - name: Prepare artifact
49
+ run: Get-ChildItem .\src\SimpleAccounting\bin\Release\netcoreapp3.1 -Filter *.json | % { if ($_.FullName.EndsWith("runtimeconfig.json") -eq $false) { Remove-Item $_.FullName } }
50
+ shell: pwsh
51
- name: Upload artifacts
52
uses: actions/upload-artifact@v1
53
with:
0 commit comments