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 ebd2fe8 commit ad8ba61Copy full SHA for ad8ba61
.github/workflows/create-release.yml
@@ -28,6 +28,14 @@ jobs:
28
run: dotnet build ./msgraph-developer-proxy-plugins/msgraph-developer-proxy-plugins.csproj -c Release -r ${{ matrix.architecture }} --no-self-contained
29
- name: Add plugins to output
30
run: cp ./msgraph-developer-proxy/bin/Release/net7.0/${{ matrix.architecture }}/GraphProxyPlugins ./${{ env.release }} -r
31
+ - name: Remove unnecessary files
32
+ run: |
33
+ pushd
34
+ cd ./${{ env.release }}
35
+ Get-ChildItem -Filter *.pdb -Recurse | Remove-Item
36
+ Get-ChildItem -Filter *.deps.json -Recurse | Remove-Item
37
+ Get-ChildItem -Filter *.runtimeconfig.json -Recurse | Remove-Item
38
+ popd
39
- name: Archive Release ${{ env.release }}
40
uses: thedoctor0/zip-release@master
41
with:
0 commit comments