adapted other Buildplatforms
Some checks failed
Build Linux x64 / build-linux-x64 (push) Failing after 7s
Build Docker Linux x64 / build-docker-linux-x64 (push) Failing after 1m51s
Build Windows x64 / build-windows-x64 (push) Failing after 7s
Build ARM64 Linux / build-arm64 (push) Has been cancelled

This commit is contained in:
2025-12-09 23:43:35 +01:00
parent d2162cc3c3
commit 44fad86f5b
3 changed files with 6 additions and 6 deletions

View File

@@ -14,13 +14,13 @@ 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.x'
- name: Restore dependencies - name: Restore dependencies
run: dotnet restore run: dotnet restore ./CouchLog/CouchLog.sln
- name: Build Linux x64 - 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 - name: Upload Linux x64 artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3

View File

@@ -19,4 +19,4 @@ jobs:
docker buildx build \ docker buildx build \
--platform linux/amd64 \ --platform linux/amd64 \
-t myapp:linux-x64 \ -t myapp:linux-x64 \
--load . --load ./CouchLog/CouchLog.sln

View File

@@ -17,10 +17,10 @@ jobs:
dotnet-version: '8.0.x' dotnet-version: '8.0.x'
- name: Restore dependencies - name: Restore dependencies
run: dotnet restore run: dotnet restore ./CouchLog/CouchLog.sln
- name: Build Windows x64 - 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 - name: Upload Windows artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3