From 69838cc88fec644d8b174809b381cdc6868052a9 Mon Sep 17 00:00:00 2001 From: Sean Date: Mon, 17 Nov 2025 21:03:13 -0500 Subject: [PATCH] Test Upload Build Artifact in ActRunner --- .gitea/workflows/arm64-ci.yaml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/arm64-ci.yaml b/.gitea/workflows/arm64-ci.yaml index 8b3a414..2473a88 100644 --- a/.gitea/workflows/arm64-ci.yaml +++ b/.gitea/workflows/arm64-ci.yaml @@ -21,9 +21,13 @@ jobs: run: dotnet restore # Restore NuGet packages - name: Build project - run: | - ls -la - dotnet build --configuration Debug --no-restore # Build the project in Debug configuration + run: dotnet build --configuration Debug --no-restore # Build the project in Debug configuration + + - name: Upload Build Artifact + uses: actions/upload-artifact@v3 + with: + name: marketdata-build-artifact + path: marketdata/ # - name: Run tests (optional) # run: dotnet test --no-build # Run unit tests if available