From d720cf88b6b5e8f45234ee95cd726e882a7f8916 Mon Sep 17 00:00:00 2001 From: Georg Jung Date: Wed, 5 Feb 2025 14:19:52 +0100 Subject: [PATCH] Fix remaining build issues --- .github/workflows/cd.yml | 1 - .github/workflows/standalone-build.yml | 2 -- Dockerfile | 3 +-- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 3ff38fe..29ff788 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -36,7 +36,6 @@ jobs: 7z a artifacts/fdd.zip ./artifacts/fdd/* 7z a artifacts/win-x86.zip ./artifacts/win-x86/* 7z a artifacts/win-x86-iis.zip ./artifacts/win-x86-iis/* - 7z a artifacts/win-arm.zip ./artifacts/win-arm/* 7z a artifacts/linux-x64.zip ./artifacts/linux-x64/* - uses: softprops/action-gh-release@v1 with: diff --git a/.github/workflows/standalone-build.yml b/.github/workflows/standalone-build.yml index c3d7c00..1a27200 100644 --- a/.github/workflows/standalone-build.yml +++ b/.github/workflows/standalone-build.yml @@ -15,8 +15,6 @@ jobs: name: win-x86 - args: '-r win-x86 --self-contained' name: win-x86-iis - - args: '-r win-arm --self-contained /p:PublishSingleFile=true' - name: win-arm - args: '-r linux-x64 --self-contained /p:PublishSingleFile=true' name: linux-x64 steps: diff --git a/Dockerfile b/Dockerfile index 2d60e48..c8717d2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,8 +7,7 @@ EXPOSE 443 FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build WORKDIR /src -COPY ["WoL.sln", "./"] -COPY ["Directory.Build.props", "./"] +COPY ["WoL.sln", "Directory.Build.props", "Directory.Packages.props", "./"] COPY ["WoL/WoL.csproj", "./WoL/"] RUN dotnet restore "WoL.sln" COPY . .