Bundle Build Artifacts
All checks were successful
Build .NET Project / build (push) Successful in 3m35s

This commit is contained in:
2025-11-17 21:30:16 -05:00
parent 489f99ed00
commit e7dd42b768

View File

@@ -25,11 +25,24 @@ jobs:
pwd
dotnet build --configuration Debug --no-restore # Build the project in Debug configuration
- name: Upload Build Artifact
- name: Upload Market Data Build Artifact
uses: actions/upload-artifact@v3
with:
name: marketdata-build-artifact
path: MarketData/MarketData/bin/Debug/net8.0
- name: Upload Market Data Server Build Artifact
uses: actions/upload-artifact@v3
with:
name: marketdata-server-build-artifact
path: MarketDataServer/bin/Debug/net8.0
- name: Upload IPMonitor Build Artifact
uses: actions/upload-artifact@v3
with:
name: ipmonitor-build-artifact
path: IPMonitor/bin/Debug/net8.0
# - name: Run tests (optional)
# run: dotnet test --no-build # Run unit tests if available