diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cbbcca4e3..93eb537cd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -96,20 +96,25 @@ jobs: - name: Build run: | dotnet publish CollapseLauncher -c ${{matrix.Configuration}} -p:PublishProfile=Publish-DebugCIReleaseAOT -p:PublishDir=".\debug-aot-build\" - - - name: Upload Artifact - uses: actions/upload-artifact@v4 - with: - name: aot-experimental_collapse_${{ matrix.platform }}-${{ matrix.configuration }}_${{ matrix.framework }}_${{ github.sha }} - path: ./CollapseLauncher/debug-aot-build/ !./CollapseLauncher/debug-aot-build/**/*.pdb - compression-level: 9 - + - name: Upload debug symbols uses: actions/upload-artifact@v4 with: name: aot-experimental-symbols_collapse_${{ matrix.platform }}-${{ matrix.configuration }}_${{ matrix.framework }}_${{ github.sha }} path: ./CollapseLauncher/debug-aot-build/**/*.pdb compression-level: 9 + + - name: Remove debug symbols + run: | + Remove-Item -Path "./CollapseLauncher/debug-aot-build/*.pdb" -Recurse -Force + + - name: Upload Artifact + uses: actions/upload-artifact@v4 + with: + name: aot-experimental_collapse_${{ matrix.platform }}-${{ matrix.configuration }}_${{ matrix.framework }}_${{ github.sha }} + path: ./CollapseLauncher/debug-aot-build/ + compression-level: 9 + notify-discord: runs-on: ubuntu-latest diff --git a/appveyor.yml b/appveyor.yml index 673fda0ee..fa4324c55 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -321,7 +321,7 @@ for: deploy: - provider: Webhook - url: https://app.signpath.io/API/v1/6988fc60-19f4-4710-8eb7-e837c60c83b4/Integrations/AppVeyor?ProjectSlug=Collapse&SigningPolicySlug=test-signing&ArtifactConfigurationSlug=preview-aot + url: https://app.signpath.io/API/v1/6988fc60-19f4-4710-8eb7-e837c60c83b4/Integrations/AppVeyor?ProjectSlug=Collapse&SigningPolicySlug=test-signing&ArtifactConfigurationSlug=aot-release authorization: secure: B8zpDU6wkKuCBRz65VfTFxUCxY7HniWmRbJP/E3tE40kGmHKdaFnMCDSURQFWwR1pCcXHqbkJd3YX76tnTXQow== on: