From e7dd42b7684967c492d5d46d705d8d8ad22debf4 Mon Sep 17 00:00:00 2001 From: Sean Date: Mon, 17 Nov 2025 21:30:16 -0500 Subject: [PATCH] Bundle Build Artifacts --- .gitea/workflows/arm64-ci.yaml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/arm64-ci.yaml b/.gitea/workflows/arm64-ci.yaml index 3bfb863..0f18f04 100644 --- a/.gitea/workflows/arm64-ci.yaml +++ b/.gitea/workflows/arm64-ci.yaml @@ -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