From 0eaeb327339762ce4f6149cfbfec6eb977a19b92 Mon Sep 17 00:00:00 2001 From: Sean Date: Wed, 19 Nov 2025 12:20:15 -0500 Subject: [PATCH] Test build --- .gitea/workflows/arm64-ci.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/arm64-ci.yaml b/.gitea/workflows/arm64-ci.yaml index af84c60..3cbe420 100644 --- a/.gitea/workflows/arm64-ci.yaml +++ b/.gitea/workflows/arm64-ci.yaml @@ -9,15 +9,16 @@ jobs: build: runs-on: arm64 # Use the ARM64 runner steps: + + - name: Checkout code + uses: actions/checkout@v3 # Action to checkout your repository. actions/checkout@v4 fails with syntax error + - name: Setup NET 8.0 SDK (x64) uses: actions/setup-dotnet@v3 # Use the latest version of setup-dotnet with: dotnet-version: '8.0.x' # Specify the desired .NET version architecture: 'x64' # Explicitly request the 64-bit architecture - - - name: Checkout code - uses: actions/checkout@v3 # Action to checkout your repository. actions/checkout@v4 fails with syntax error - + # - name: Setup .NET SDK # uses: actions/setup-dotnet@v4 # Action to install a specific .NET SDK version # with: