changed actions path to sln

This commit is contained in:
2025-12-09 23:09:47 +01:00
parent cddbbfc09e
commit a2711a85fc

View File

@@ -14,16 +14,16 @@ jobs:
- name: Setup .NET - name: Setup .NET
uses: actions/setup-dotnet@v3 uses: actions/setup-dotnet@v3
with: with:
dotnet-version: '8.0.x' dotnet-version: '10.0.0'
- name: Restore dependencies - name: Restore dependencies
run: dotnet restore run: dotnet restore ./CouchLog/CouchLog/CouchLog.sln
- name: Build ARM64 Linux - name: Build ARM64 Linux
run: dotnet publish -c Release -r linux-arm64 --self-contained false -o ./artifacts/linux-arm64 run: dotnet publish ./CouchLog/CouchLog/CouchLog.sln -c Release -r linux-arm64 --self-contained false -o ./artifacts/linux-arm64
- name: Upload ARM64 artifact - name: Upload ARM64 artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: linux-arm64 name: linux-arm64
path: ./artifacts/linux-arm64 path: ./artifacts/linux-arm64