diff --git a/.gitea/workflows/linux_x64.yaml b/.gitea/workflows/linux_x64.yaml index a3266f3..5b3298c 100644 --- a/.gitea/workflows/linux_x64.yaml +++ b/.gitea/workflows/linux_x64.yaml @@ -14,13 +14,13 @@ jobs: - name: Setup .NET uses: actions/setup-dotnet@v3 with: - dotnet-version: '8.0.x' + dotnet-version: '10.0.x' - name: Restore dependencies - run: dotnet restore + run: dotnet restore ./CouchLog/CouchLog.sln - name: Build Linux x64 - run: dotnet publish -c Release -r linux-x64 --self-contained false -o ./artifacts/linux-x64 + run: dotnet publish ./CouchLog/CouchLog.sln -c Release -r linux-x64 --self-contained false -o ./artifacts/linux-x64 - name: Upload Linux x64 artifact uses: actions/upload-artifact@v3 diff --git a/.gitea/workflows/linux_x64_docker.yaml b/.gitea/workflows/linux_x64_docker.yaml index 182c0d8..bcd8e6a 100644 --- a/.gitea/workflows/linux_x64_docker.yaml +++ b/.gitea/workflows/linux_x64_docker.yaml @@ -19,4 +19,4 @@ jobs: docker buildx build \ --platform linux/amd64 \ -t myapp:linux-x64 \ - --load . + --load ./CouchLog/CouchLog.sln diff --git a/.gitea/workflows/win_x64.yaml b/.gitea/workflows/win_x64.yaml index 8924b9e..2086b14 100644 --- a/.gitea/workflows/win_x64.yaml +++ b/.gitea/workflows/win_x64.yaml @@ -17,10 +17,10 @@ jobs: dotnet-version: '8.0.x' - name: Restore dependencies - run: dotnet restore + run: dotnet restore ./CouchLog/CouchLog.sln - name: Build Windows x64 - run: dotnet publish -c Release -r win-x64 --self-contained true -o ./artifacts/windows-x64 + run: dotnet publish ./CouchLog/CouchLog.sln -c Release -r win-x64 --self-contained true -o ./artifacts/windows-x64 - name: Upload Windows artifact uses: actions/upload-artifact@v3