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